pub enum Align {
Start,
End,
Center,
Stretch,
Fill,
}
Expand description
The alignment of items along the cross axis.
Variants§
Start
Items are packed toward the start of the stack.
End
Items are packed toward the end of the stack.
Center
Items are packed toward the center of the stack.
Stretch
Items are stretched to all have the same size.
Fill
Items are stretched to fill the available space.
Implementations§
Trait Implementations§
impl Copy for Align
impl Eq for Align
impl StructuralPartialEq for Align
Auto Trait Implementations§
impl Freeze for Align
impl RefUnwindSafe for Align
impl Send for Align
impl Sync for Align
impl Unpin for Align
impl UnwindSafe for Align
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