pub enum Geometry {
Vertical,
Horizontal,
Stacked,
}
Expand description
Defines geometry of the frame.
Variants§
Vertical
Children of frame with this geometry are placed vertically - in one row.
Horizontal
Children of frame with this geometry are placed how - in one column.
Stacked
Children of frame with this geometry are placed on stack - only one is visible at a time.
Trait Implementations§
impl Copy for Geometry
impl StructuralPartialEq for Geometry
Auto Trait Implementations§
impl Freeze for Geometry
impl RefUnwindSafe for Geometry
impl Send for Geometry
impl Sync for Geometry
impl Unpin for Geometry
impl UnwindSafe for Geometry
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