pub enum StringifierOrInheritOrStatic {
    Stringifier(Stringifier),
    Inherit(Inherit),
    Static(Static),
}Expand description
Parses stringifier|inherit|static
Variants§
Trait Implementations§
Source§impl Clone for StringifierOrInheritOrStatic
 
impl Clone for StringifierOrInheritOrStatic
Source§fn clone(&self) -> StringifierOrInheritOrStatic
 
fn clone(&self) -> StringifierOrInheritOrStatic
Returns a copy 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 StringifierOrInheritOrStatic
 
impl Debug for StringifierOrInheritOrStatic
Source§impl From<Inherit> for StringifierOrInheritOrStatic
 
impl From<Inherit> for StringifierOrInheritOrStatic
Source§impl From<Static> for StringifierOrInheritOrStatic
 
impl From<Static> for StringifierOrInheritOrStatic
Source§impl From<Stringifier> for StringifierOrInheritOrStatic
 
impl From<Stringifier> for StringifierOrInheritOrStatic
Source§fn from(x: Stringifier) -> Self
 
fn from(x: Stringifier) -> Self
Converts to this type from the input type.
Source§impl Hash for StringifierOrInheritOrStatic
 
impl Hash for StringifierOrInheritOrStatic
Source§impl Ord for StringifierOrInheritOrStatic
 
impl Ord for StringifierOrInheritOrStatic
Source§fn cmp(&self, other: &StringifierOrInheritOrStatic) -> Ordering
 
fn cmp(&self, other: &StringifierOrInheritOrStatic) -> 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 StringifierOrInheritOrStatic
 
impl<'a> Parse<'a> for StringifierOrInheritOrStatic
Source§impl PartialEq for StringifierOrInheritOrStatic
 
impl PartialEq for StringifierOrInheritOrStatic
Source§fn eq(&self, other: &StringifierOrInheritOrStatic) -> bool
 
fn eq(&self, other: &StringifierOrInheritOrStatic) -> bool
Tests for 
self and other values to be equal, and is used by ==.Source§impl PartialOrd for StringifierOrInheritOrStatic
 
impl PartialOrd for StringifierOrInheritOrStatic
impl Copy for StringifierOrInheritOrStatic
impl Eq for StringifierOrInheritOrStatic
impl StructuralPartialEq for StringifierOrInheritOrStatic
Auto Trait Implementations§
impl Freeze for StringifierOrInheritOrStatic
impl RefUnwindSafe for StringifierOrInheritOrStatic
impl Send for StringifierOrInheritOrStatic
impl Sync for StringifierOrInheritOrStatic
impl Unpin for StringifierOrInheritOrStatic
impl UnwindSafe for StringifierOrInheritOrStatic
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