[][src]Enum branchy::ErrorKind

pub enum ErrorKind<Nt> where
    Nt: NonterminalValue
{ NontermExpansionFailed(Nt), MaxIterationsReached(usize), }

Enumerates kinds of possible errors during expansion.

Variants

NontermExpansionFailed(Nt)
MaxIterationsReached(usize)

Trait Implementations

impl<Nt: Clone> Clone for ErrorKind<Nt> where
    Nt: NonterminalValue
[src]

impl<Nt: Copy> Copy for ErrorKind<Nt> where
    Nt: NonterminalValue
[src]

impl<Nt> Debug for ErrorKind<Nt> where
    Nt: NonterminalValue
[src]

Auto Trait Implementations

impl<Nt> RefUnwindSafe for ErrorKind<Nt> where
    Nt: RefUnwindSafe

impl<Nt> Send for ErrorKind<Nt> where
    Nt: Send

impl<Nt> Sync for ErrorKind<Nt> where
    Nt: Sync

impl<Nt> Unpin for ErrorKind<Nt> where
    Nt: Unpin

impl<Nt> UnwindSafe for ErrorKind<Nt> where
    Nt: 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,