pub enum GridExpand {
Neither,
Horizontal,
Vertical,
Both,
}Expand description
Informs a LayoutGrid about how a control should use available space
in one or both dimensions.
Variants§
Neither
This control should not use extra space
Horizontal
This control should use extra space horizontally
Vertical
This control should use extra space vertically
Both
This control should use all available space in both dimensions
Auto Trait Implementations§
impl Freeze for GridExpand
impl RefUnwindSafe for GridExpand
impl Send for GridExpand
impl Sync for GridExpand
impl Unpin for GridExpand
impl UnsafeUnpin for GridExpand
impl UnwindSafe for GridExpand
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