[][src]Enum nom_whitespace::lib::nom::ErrorKind

pub enum ErrorKind<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,
    ParseTo,
    TooLarge,
    Many0Count,
    Many1Count,
}

indicates which parser returned an error

Variants

Custom(E)TagMapResMapOptAltIsNotIsASeparatedListSeparatedNonEmptyListMany0Many1ManyTillCountTakeUntilAndConsumeTakeUntilTakeUntilEitherAndConsumeTakeUntilEitherLengthValueTagClosureAlphaDigitHexDigitOctDigitAlphaNumericSpaceMultiSpaceLengthValueFnEofExprOptExprResCondReduceSwitchTagBitsOneOfNoneOfCharCrLfRegexpMatchRegexpMatchesRegexpFindRegexpCaptureRegexpCapturesTakeWhile1CompleteFixEscapedEscapedTransformTagStr
Deprecated since 4.0.0:

Please use Tag instead

IsNotStr
Deprecated since 4.0.0:

Please use IsNot instead

IsAStr
Deprecated since 4.0.0:

Please use IsA instead

TakeWhile1Str
Deprecated since 4.0.0:

Please use TakeWhile1 instead

NonEmptyManyMNTakeUntilAndConsumeStr
Deprecated since 4.0.0:

Please use TakeUntilAndConsume instead

TakeUntilStr
Deprecated since 4.0.0:

Please use TakeUntil instead

NotPermutationVerifyTakeTill1TakeUntilAndConsume1TakeWhileMNParseToTooLargeMany0CountMany1Count

Methods

impl<E> ErrorKind<E>[src]

pub fn description(&self) -> &str[src]

pub fn into_error_kind(self) -> 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<F, E> Convert<ErrorKind<F>> for ErrorKind<E> where
    E: From<F>, 
[src]

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

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

default fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

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

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

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

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

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

Auto Trait Implementations

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

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

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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, U> Into for T where
    U: From<T>, 
[src]

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T