Enum nom::IError [] [src]

pub enum IError<E = u32> {
    Error(Err<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<E: Debug> Debug for IError<E>
[src]

[src]

Formats the value using the given formatter.

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

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more