[][src]Enum cmdmat::LookError

pub enum LookError<D> {
    DeciderAdvancedTooFar,
    DeciderDenied(String, D),
    FinalizerDoesNotExist,
    UnknownMapping(String),
}

Errors happening during lookup of a command.

Variants

DeciderAdvancedTooFar

Decider consumed more than available input

DeciderDenied(String, D)

Decider denies the input

FinalizerDoesNotExist

A finalizer does not exist for this entry

UnknownMapping(String)

The mapping element does not exist

Trait Implementations

impl<D: PartialEq> PartialEq<LookError<D>> for LookError<D>[src]

impl<D: Debug> Debug for LookError<D>[src]

Auto Trait Implementations

impl<D> Send for LookError<D> where
    D: Send

impl<D> Unpin for LookError<D> where
    D: Unpin

impl<D> Sync for LookError<D> where
    D: Sync

impl<D> UnwindSafe for LookError<D> where
    D: UnwindSafe

impl<D> RefUnwindSafe for LookError<D> where
    D: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for T[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.

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

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

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