pub enum RuleOverlapStyleValue {
RowOverColumn(Ident),
ColumnOverRow(Ident),
}Expand description
Represents the style value for rule-overlap as defined in css-gaps-1.
The grammar is defined as:
row-over-column | column-over-rowVariants§
Trait Implementations§
Source§impl Clone for RuleOverlapStyleValue
impl Clone for RuleOverlapStyleValue
Source§fn clone(&self) -> RuleOverlapStyleValue
fn clone(&self) -> RuleOverlapStyleValue
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 RuleOverlapStyleValue
impl Debug for RuleOverlapStyleValue
Source§impl Hash for RuleOverlapStyleValue
impl Hash for RuleOverlapStyleValue
Source§impl Ord for RuleOverlapStyleValue
impl Ord for RuleOverlapStyleValue
Source§fn cmp(&self, other: &RuleOverlapStyleValue) -> Ordering
fn cmp(&self, other: &RuleOverlapStyleValue) -> 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 RuleOverlapStyleValue
impl<'a> Parse<'a> for RuleOverlapStyleValue
Source§impl PartialEq for RuleOverlapStyleValue
impl PartialEq for RuleOverlapStyleValue
Source§impl PartialOrd for RuleOverlapStyleValue
impl PartialOrd for RuleOverlapStyleValue
Source§impl<'a> Peek<'a> for RuleOverlapStyleValue
impl<'a> Peek<'a> for RuleOverlapStyleValue
Source§impl ToCursors for RuleOverlapStyleValue
impl ToCursors for RuleOverlapStyleValue
fn to_cursors(&self, s: &mut impl CursorSink)
impl Eq for RuleOverlapStyleValue
impl StructuralPartialEq for RuleOverlapStyleValue
Auto Trait Implementations§
impl Freeze for RuleOverlapStyleValue
impl RefUnwindSafe for RuleOverlapStyleValue
impl Send for RuleOverlapStyleValue
impl Sync for RuleOverlapStyleValue
impl Unpin for RuleOverlapStyleValue
impl UnwindSafe for RuleOverlapStyleValue
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