Struct classnames::classes::OptionClass[][src]

pub struct OptionClass<C> { /* fields omitted */ }

Trait Implementations

impl<'s, C> Add<&'s str> for OptionClass<C> where
    C: Class
[src]

type Output = DuoClass<Self, &'s str>

The resulting type after applying the + operator.

impl<C, O> Add<O> for OptionClass<C> where
    C: Class,
    O: Class
[src]

type Output = DuoClass<Self, O>

The resulting type after applying the + operator.

impl<C, O> Add<Option<O>> for OptionClass<C> where
    C: Class,
    O: Class
[src]

type Output = DuoClass<Self, OptionClass<O>>

The resulting type after applying the + operator.

impl<C> Class for OptionClass<C> where
    C: Display + Sized + PartialEq + Clone
[src]

impl<C: Clone> Clone for OptionClass<C>[src]

impl<C: Debug> Debug for OptionClass<C>[src]

impl<C: Display> Display for OptionClass<C>[src]

impl<C: PartialEq> PartialEq<OptionClass<C>> for OptionClass<C>[src]

impl<C> StructuralPartialEq for OptionClass<C>[src]

Auto Trait Implementations

impl<C> RefUnwindSafe for OptionClass<C> where
    C: RefUnwindSafe
[src]

impl<C> Send for OptionClass<C> where
    C: Send
[src]

impl<C> Sync for OptionClass<C> where
    C: Sync
[src]

impl<C> Unpin for OptionClass<C> where
    C: Unpin
[src]

impl<C> UnwindSafe for OptionClass<C> where
    C: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.