pub struct ParentContainer {
pub is_floating: bool,
pub layout_scheme: LayoutScheme,
pub num_children: u32,
/* private fields */
}Expand description
A parent container that holds multiple child containers.
Fields§
§is_floating: boolWhether the container is floating within its workspace.
layout_scheme: LayoutSchemeHow the container is laying out its children.
num_children: u32The number of child containers.
Implementations§
Trait Implementations§
Source§impl Clone for ParentContainer
impl Clone for ParentContainer
Source§fn clone(&self) -> ParentContainer
fn clone(&self) -> ParentContainer
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ParentContainer
impl Debug for ParentContainer
impl Copy for ParentContainer
Auto Trait Implementations§
impl Freeze for ParentContainer
impl RefUnwindSafe for ParentContainer
impl Send for ParentContainer
impl Sync for ParentContainer
impl Unpin for ParentContainer
impl UnwindSafe for ParentContainer
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more