Enum greenwasm_binary_format::NomErrorKind[][src]

pub enum NomErrorKind<E = u32> {
    Custom(E),
    Tag,
    MapRes,
    MapOpt,
    Alt,
    IsNot,
    IsA,
    SeparatedList,
    SeparatedNonEmptyList,
    Many0,
    Many1,
    ManyTill,
    Count,
    TakeUntilAndConsume,
    TakeUntil,
    TakeUntilEitherAndConsume,
    TakeUntilEither,
    LengthValue,
    TagClosure,
    Alpha,
    Digit,
    HexDigit,
    OctDigit,
    AlphaNumeric,
    Space,
    MultiSpace,
    LengthValueFn,
    Eof,
    ExprOpt,
    ExprRes,
    CondReduce,
    Switch,
    TagBits,
    OneOf,
    NoneOf,
    Char,
    CrLf,
    RegexpMatch,
    RegexpMatches,
    RegexpFind,
    RegexpCapture,
    RegexpCaptures,
    TakeWhile1,
    Complete,
    Fix,
    Escaped,
    EscapedTransform,
    TagStr,
    IsNotStr,
    IsAStr,
    TakeWhile1Str,
    NonEmpty,
    ManyMN,
    TakeUntilAndConsumeStr,
    TakeUntilStr,
    Not,
    Permutation,
    Verify,
    TakeTill1,
    TakeUntilAndConsume1,
    TakeWhileMN,
}

indicates which parser returned an error

Variants

Deprecating in 4.0.0

: Please use Tag instead

Deprecating in 4.0.0

: Please use IsNot instead

Deprecating in 4.0.0

: Please use IsA instead

Deprecating in 4.0.0

: Please use TakeWhile1 instead

Deprecating in 4.0.0

: Please use TakeUntilAndConsume instead

Deprecating in 4.0.0

: Please use TakeUntil instead

Methods

impl<E> ErrorKind<E>
[src]

Convert Err into an ErrorKind.

This allows application code to use ErrorKind and stay independent from the verbose-errors features activation.

Trait Implementations

impl<E> Hash for ErrorKind<E> where
    E: Hash
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl<E> Clone for ErrorKind<E> where
    E: Clone
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<E> Debug for ErrorKind<E> where
    E: Debug
[src]

Formats the value using the given formatter. Read more

impl<E> Eq for ErrorKind<E> where
    E: Eq
[src]

impl<F, E> Convert<ErrorKind<F>> for ErrorKind<E> where
    E: From<F>, 
[src]

impl<E> PartialEq<ErrorKind<E>> for ErrorKind<E> where
    E: PartialEq<E>, 
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

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

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