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