#[repr(C)]pub enum LayoutJustifyItems {
Start = 0,
End = 1,
Center = 2,
Stretch = 3,
}Expand description
Represents justify-items for grid containers
Variants§
Trait Implementations§
Source§impl Clone for LayoutJustifyItems
impl Clone for LayoutJustifyItems
Source§fn clone(&self) -> LayoutJustifyItems
fn clone(&self) -> LayoutJustifyItems
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 LayoutJustifyItems
impl Debug for LayoutJustifyItems
Source§impl Default for LayoutJustifyItems
impl Default for LayoutJustifyItems
Source§impl FormatAsRustCode for LayoutJustifyItems
impl FormatAsRustCode for LayoutJustifyItems
fn format_as_rust_code(&self, _tabs: usize) -> String
Source§impl From<LayoutJustifyItems> for CssProperty
impl From<LayoutJustifyItems> for CssProperty
Source§fn from(e: LayoutJustifyItems) -> Self
fn from(e: LayoutJustifyItems) -> Self
Converts to this type from the input type.
Source§impl Hash for LayoutJustifyItems
impl Hash for LayoutJustifyItems
Source§impl Ord for LayoutJustifyItems
impl Ord for LayoutJustifyItems
Source§fn cmp(&self, other: &LayoutJustifyItems) -> Ordering
fn cmp(&self, other: &LayoutJustifyItems) -> 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 LayoutJustifyItems
impl PartialEq for LayoutJustifyItems
Source§impl PartialOrd for LayoutJustifyItems
impl PartialOrd for LayoutJustifyItems
Source§impl PrintAsCssValue for LayoutJustifyItems
impl PrintAsCssValue for LayoutJustifyItems
fn print_as_css_value(&self) -> String
impl Copy for LayoutJustifyItems
impl Eq for LayoutJustifyItems
impl StructuralPartialEq for LayoutJustifyItems
Auto Trait Implementations§
impl Freeze for LayoutJustifyItems
impl RefUnwindSafe for LayoutJustifyItems
impl Send for LayoutJustifyItems
impl Sync for LayoutJustifyItems
impl Unpin for LayoutJustifyItems
impl UnwindSafe for LayoutJustifyItems
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