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