Enum nom::IError [] [src]

pub enum IError<I, E = u32> {
    Error(Err<I, E>),
    Incomplete(Needed),
}

This is the same as IResult, but without Done

This is used as the Error type when converting to std::result::Result

Variants

Trait Implementations

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

Formats the value using the given formatter.

impl<I: PartialEq, E: PartialEq> PartialEq for IError<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 IError<I, E>
[src]

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more