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