pub enum ContinueStyleValue {
Auto(Ident),
Discard(Ident),
Collapse(Ident),
}Expand description
Represents the style value for continue as defined in css-overflow-5.
The grammar is defined as:
auto | discard | collapseVariants§
Trait Implementations§
Source§impl Clone for ContinueStyleValue
impl Clone for ContinueStyleValue
Source§fn clone(&self) -> ContinueStyleValue
fn clone(&self) -> ContinueStyleValue
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 ContinueStyleValue
impl Debug for ContinueStyleValue
Source§impl Hash for ContinueStyleValue
impl Hash for ContinueStyleValue
Source§impl Ord for ContinueStyleValue
impl Ord for ContinueStyleValue
Source§fn cmp(&self, other: &ContinueStyleValue) -> Ordering
fn cmp(&self, other: &ContinueStyleValue) -> 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 ContinueStyleValue
impl<'a> Parse<'a> for ContinueStyleValue
Source§impl PartialEq for ContinueStyleValue
impl PartialEq for ContinueStyleValue
Source§impl PartialOrd for ContinueStyleValue
impl PartialOrd for ContinueStyleValue
Source§impl<'a> Peek<'a> for ContinueStyleValue
impl<'a> Peek<'a> for ContinueStyleValue
Source§impl ToCursors for ContinueStyleValue
impl ToCursors for ContinueStyleValue
fn to_cursors(&self, s: &mut impl CursorSink)
impl Eq for ContinueStyleValue
impl StructuralPartialEq for ContinueStyleValue
Auto Trait Implementations§
impl Freeze for ContinueStyleValue
impl RefUnwindSafe for ContinueStyleValue
impl Send for ContinueStyleValue
impl Sync for ContinueStyleValue
impl Unpin for ContinueStyleValue
impl UnwindSafe for ContinueStyleValue
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