pub enum StackJustify {
Start,
Center,
End,
Between,
Around,
Evenly,
}Expand description
Justification along the main axis.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for StackJustify
impl Clone for StackJustify
Source§fn clone(&self) -> StackJustify
fn clone(&self) -> StackJustify
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for StackJustify
Source§impl Debug for StackJustify
impl Debug for StackJustify
Source§impl Default for StackJustify
impl Default for StackJustify
Source§fn default() -> StackJustify
fn default() -> StackJustify
Returns the “default value” for a type. Read more
impl Eq for StackJustify
Source§impl PartialEq for StackJustify
impl PartialEq for StackJustify
Source§fn eq(&self, other: &StackJustify) -> bool
fn eq(&self, other: &StackJustify) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StackJustify
Auto Trait Implementations§
impl Freeze for StackJustify
impl RefUnwindSafe for StackJustify
impl Send for StackJustify
impl Sync for StackJustify
impl Unpin for StackJustify
impl UnsafeUnpin for StackJustify
impl UnwindSafe for StackJustify
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