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
Error(Err<I, E>)Incomplete(Needed)Trait Implementations
impl<I: Debug, E: Debug> Debug for IError<I, E>[src]
impl<I: PartialEq, E: PartialEq> PartialEq for IError<I, E>[src]
fn eq(&self, __arg_0: &IError<I, E>) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &IError<I, E>) -> bool
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]
fn clone(&self) -> IError<I, E>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more