pub enum Justify {
Start,
End,
Center,
SpaceBetween,
SpaceAround,
SpaceEvenly,
}
Expand description
The justify content of a stack container.
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.
SpaceBetween
Items are evenly distributed in the stack, with equal-size spaces between them.
SpaceAround
Items are evenly distributed in the stack, with half-size spaces on either end.
SpaceEvenly
Items are evenly distributed in the stack.
Implementations§
Trait Implementations§
impl Copy for Justify
impl Eq for Justify
impl StructuralPartialEq for Justify
Auto Trait Implementations§
impl Freeze for Justify
impl RefUnwindSafe for Justify
impl Send for Justify
impl Sync for Justify
impl Unpin for Justify
impl UnwindSafe for Justify
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