Enum nom::simple_errors::Context [] [src]

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

Variants

Methods

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

[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]

[src]

Formats the value using the given formatter. Read more

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[src]

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

[src]

This method tests for !=.

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

[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