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