[][src]Enum mandos::CheckValue

pub enum CheckValue<T> {
    DefaultStar,
    Star,
    Equal(T),
}

Variants

DefaultStar
Star
Equal(T)

Implementations

impl<T: InterpretableFrom<ValueSubTree>> CheckValue<T>[src]

pub fn is_star(&self) -> bool[src]

pub fn is_default_star(&self) -> bool[src]

Trait Implementations

impl<V, T> Checkable<V> for CheckValue<T> where
    T: Checkable<V>, 
[src]

impl<T: Debug> Debug for CheckValue<T>[src]

impl<T: InterpretableFrom<ValueSubTree>> Default for CheckValue<T>[src]

impl<T: Display> Display for CheckValue<T>[src]

impl<T: InterpretableFrom<ValueSubTree>> InterpretableFrom<ValueSubTree> for CheckValue<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for CheckValue<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for CheckValue<T> where
    T: Send
[src]

impl<T> Sync for CheckValue<T> where
    T: Sync
[src]

impl<T> Unpin for CheckValue<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for CheckValue<T> where
    T: 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> 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.