pub enum ColumnRuleStyleStyleValue {
LineStyleList(LineStyleList),
AutoLineStyleList(AutoLineStyleList),
}Expand description
Represents the style value for column-rule-style 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-style-list> | <auto-line-style-list>Variants§
LineStyleList(LineStyleList)
AutoLineStyleList(AutoLineStyleList)
Trait Implementations§
Source§impl Clone for ColumnRuleStyleStyleValue
impl Clone for ColumnRuleStyleStyleValue
Source§fn clone(&self) -> ColumnRuleStyleStyleValue
fn clone(&self) -> ColumnRuleStyleStyleValue
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 ColumnRuleStyleStyleValue
impl Debug for ColumnRuleStyleStyleValue
Source§impl Hash for ColumnRuleStyleStyleValue
impl Hash for ColumnRuleStyleStyleValue
Source§impl Ord for ColumnRuleStyleStyleValue
impl Ord for ColumnRuleStyleStyleValue
Source§fn cmp(&self, other: &ColumnRuleStyleStyleValue) -> Ordering
fn cmp(&self, other: &ColumnRuleStyleStyleValue) -> 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 ColumnRuleStyleStyleValue
impl<'a> Parse<'a> for ColumnRuleStyleStyleValue
Source§impl PartialOrd for ColumnRuleStyleStyleValue
impl PartialOrd for ColumnRuleStyleStyleValue
Source§impl<'a> Peek<'a> for ColumnRuleStyleStyleValue
impl<'a> Peek<'a> for ColumnRuleStyleStyleValue
Source§impl ToCursors for ColumnRuleStyleStyleValue
impl ToCursors for ColumnRuleStyleStyleValue
fn to_cursors(&self, s: &mut impl CursorSink)
impl Eq for ColumnRuleStyleStyleValue
impl StructuralPartialEq for ColumnRuleStyleStyleValue
Auto Trait Implementations§
impl Freeze for ColumnRuleStyleStyleValue
impl RefUnwindSafe for ColumnRuleStyleStyleValue
impl Send for ColumnRuleStyleStyleValue
impl Sync for ColumnRuleStyleStyleValue
impl Unpin for ColumnRuleStyleStyleValue
impl UnwindSafe for ColumnRuleStyleStyleValue
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