[][src]Enum syntastic::ast::InvalidOperation

pub enum InvalidOperation<V, O, S> {
    TooFewArguments(usize),
    TooManyArguments(usize),
    SortMismatches(Vec<ArgumentSortMismatch<V, O, S>>),
}

Variants

TooFewArguments(usize)
TooManyArguments(usize)
SortMismatches(Vec<ArgumentSortMismatch<V, O, S>>)

Trait Implementations

impl<V: Debug, O: Debug, S: Debug> Debug for InvalidOperation<V, O, S>[src]

impl<V: PartialEq, O: PartialEq, S: PartialEq> PartialEq<InvalidOperation<V, O, S>> for InvalidOperation<V, O, S>[src]

impl<V, O, S> StructuralPartialEq for InvalidOperation<V, O, S>[src]

Auto Trait Implementations

impl<V, O, S> RefUnwindSafe for InvalidOperation<V, O, S> where
    O: RefUnwindSafe,
    S: RefUnwindSafe,
    V: RefUnwindSafe

impl<V, O, S> Send for InvalidOperation<V, O, S> where
    O: Send,
    S: Send,
    V: Send

impl<V, O, S> Sync for InvalidOperation<V, O, S> where
    O: Sync,
    S: Sync,
    V: Sync

impl<V, O, S> Unpin for InvalidOperation<V, O, S> where
    O: Unpin,
    S: Unpin,
    V: Unpin

impl<V, O, S> UnwindSafe for InvalidOperation<V, O, S> where
    O: UnwindSafe,
    S: UnwindSafe,
    V: UnwindSafe

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, 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.