pub enum ColumnRuleColorStyleValue {
LineColorList(LineColorList),
AutoLineColorList(AutoLineColorList),
}Expand description
Represents the style value for column-rule-color as defined in css-gaps-1.
Multi-column layout flows an element’s content across one or more columns in a single row, without affecting the display property of its children.
The grammar is defined as:
<line-color-list> | <auto-line-color-list>Variants§
LineColorList(LineColorList)
AutoLineColorList(AutoLineColorList)
Trait Implementations§
Source§impl Clone for ColumnRuleColorStyleValue
impl Clone for ColumnRuleColorStyleValue
Source§fn clone(&self) -> ColumnRuleColorStyleValue
fn clone(&self) -> ColumnRuleColorStyleValue
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 ColumnRuleColorStyleValue
impl Debug for ColumnRuleColorStyleValue
Source§impl Hash for ColumnRuleColorStyleValue
impl Hash for ColumnRuleColorStyleValue
Source§impl Ord for ColumnRuleColorStyleValue
impl Ord for ColumnRuleColorStyleValue
Source§fn cmp(&self, other: &ColumnRuleColorStyleValue) -> Ordering
fn cmp(&self, other: &ColumnRuleColorStyleValue) -> 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 ColumnRuleColorStyleValue
impl<'a> Parse<'a> for ColumnRuleColorStyleValue
Source§impl PartialOrd for ColumnRuleColorStyleValue
impl PartialOrd for ColumnRuleColorStyleValue
Source§impl<'a> Peek<'a> for ColumnRuleColorStyleValue
impl<'a> Peek<'a> for ColumnRuleColorStyleValue
Source§impl ToCursors for ColumnRuleColorStyleValue
impl ToCursors for ColumnRuleColorStyleValue
fn to_cursors(&self, s: &mut impl CursorSink)
impl Eq for ColumnRuleColorStyleValue
impl StructuralPartialEq for ColumnRuleColorStyleValue
Auto Trait Implementations§
impl Freeze for ColumnRuleColorStyleValue
impl RefUnwindSafe for ColumnRuleColorStyleValue
impl Send for ColumnRuleColorStyleValue
impl Sync for ColumnRuleColorStyleValue
impl Unpin for ColumnRuleColorStyleValue
impl UnwindSafe for ColumnRuleColorStyleValue
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