Enum nom::verbose_errors::Context[][src]

pub enum Context<I, E = u32> {
    Code(I, ErrorKind<E>),
    List(Vec<(I, ErrorKind<E>)>),
}

Contains the error that a parser can return

If you use the verbose-errors compilation feature, nom::Err will be the enum defined here, otherwise, it will amount to a ErrorKind<E=u32>.

It can represent a linked list of errors, indicating the path taken in the parsing tree, with corresponding position in the input data. It depends on P, the input position (for a &u8 parser, it would be a &u8), and E, the custom error type (by default, u32)

Variants

An error code, represented by an ErrorKind, which can contain a custom error code represented by E

Methods

impl<I, E> Context<I, E>
[src]

Convert Err into ErrorKind.

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

Trait Implementations

impl<I: Debug, E: Debug> Debug for Context<I, E>
[src]

Formats the value using the given formatter. Read more

impl<I: PartialEq, E: PartialEq> PartialEq for Context<I, E>
[src]

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

This method tests for !=.

impl<I: Eq, E: Eq> Eq for Context<I, E>
[src]

impl<I: Clone, E: Clone> Clone for Context<I, E>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<I, F, E: From<F>> Convert<Context<I, F>> for Context<I, E>
[src]

Auto Trait Implementations

impl<I, E> Send for Context<I, E> where
    E: Send,
    I: Send

impl<I, E> Sync for Context<I, E> where
    E: Sync,
    I: Sync