pub enum ItemTrackStyleValue {
Auto(Ident),
Row(Ident),
Column(Ident),
RowReverse(Ident),
ColumnReverse(Ident),
}Expand description
Represents the style value for item-track as defined in css-grid-3.
The grammar is defined as:
auto | row | column | row-reverse | column-reverseVariants§
Trait Implementations§
Source§impl Clone for ItemTrackStyleValue
impl Clone for ItemTrackStyleValue
Source§fn clone(&self) -> ItemTrackStyleValue
fn clone(&self) -> ItemTrackStyleValue
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 ItemTrackStyleValue
impl Debug for ItemTrackStyleValue
Source§impl Hash for ItemTrackStyleValue
impl Hash for ItemTrackStyleValue
Source§impl Ord for ItemTrackStyleValue
impl Ord for ItemTrackStyleValue
Source§fn cmp(&self, other: &ItemTrackStyleValue) -> Ordering
fn cmp(&self, other: &ItemTrackStyleValue) -> 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<'a> Parse<'a> for ItemTrackStyleValue
impl<'a> Parse<'a> for ItemTrackStyleValue
Source§impl PartialEq for ItemTrackStyleValue
impl PartialEq for ItemTrackStyleValue
Source§impl PartialOrd for ItemTrackStyleValue
impl PartialOrd for ItemTrackStyleValue
Source§impl<'a> Peek<'a> for ItemTrackStyleValue
impl<'a> Peek<'a> for ItemTrackStyleValue
Source§impl ToCursors for ItemTrackStyleValue
impl ToCursors for ItemTrackStyleValue
fn to_cursors(&self, s: &mut impl CursorSink)
impl Eq for ItemTrackStyleValue
impl StructuralPartialEq for ItemTrackStyleValue
Auto Trait Implementations§
impl Freeze for ItemTrackStyleValue
impl RefUnwindSafe for ItemTrackStyleValue
impl Send for ItemTrackStyleValue
impl Sync for ItemTrackStyleValue
impl Unpin for ItemTrackStyleValue
impl UnwindSafe for ItemTrackStyleValue
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