#[repr(C)]pub enum LayoutJustifySelf {
Auto = 0,
Start = 1,
End = 2,
Center = 3,
Stretch = 4,
}Expand description
Represents justify-self for grid items
Variants§
Trait Implementations§
Source§impl Clone for LayoutJustifySelf
impl Clone for LayoutJustifySelf
Source§fn clone(&self) -> LayoutJustifySelf
fn clone(&self) -> LayoutJustifySelf
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LayoutJustifySelf
impl Debug for LayoutJustifySelf
Source§impl Default for LayoutJustifySelf
impl Default for LayoutJustifySelf
Source§impl FormatAsRustCode for LayoutJustifySelf
impl FormatAsRustCode for LayoutJustifySelf
fn format_as_rust_code(&self, _tabs: usize) -> String
Source§impl From<LayoutJustifySelf> for CssProperty
impl From<LayoutJustifySelf> for CssProperty
Source§fn from(e: LayoutJustifySelf) -> Self
fn from(e: LayoutJustifySelf) -> Self
Converts to this type from the input type.
Source§impl Hash for LayoutJustifySelf
impl Hash for LayoutJustifySelf
Source§impl Ord for LayoutJustifySelf
impl Ord for LayoutJustifySelf
Source§fn cmp(&self, other: &LayoutJustifySelf) -> Ordering
fn cmp(&self, other: &LayoutJustifySelf) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for LayoutJustifySelf
impl PartialEq for LayoutJustifySelf
Source§impl PartialOrd for LayoutJustifySelf
impl PartialOrd for LayoutJustifySelf
Source§impl PrintAsCssValue for LayoutJustifySelf
impl PrintAsCssValue for LayoutJustifySelf
fn print_as_css_value(&self) -> String
impl Copy for LayoutJustifySelf
impl Eq for LayoutJustifySelf
impl StructuralPartialEq for LayoutJustifySelf
Auto Trait Implementations§
impl Freeze for LayoutJustifySelf
impl RefUnwindSafe for LayoutJustifySelf
impl Send for LayoutJustifySelf
impl Sync for LayoutJustifySelf
impl Unpin for LayoutJustifySelf
impl UnwindSafe for LayoutJustifySelf
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