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
Error(Err<E>)Incomplete(Needed)Trait Implementations
impl<E: Debug> Debug for IError<E>[src]
impl<E: PartialEq> PartialEq for IError<E>[src]
fn eq(&self, __arg_0: &IError<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<E>) -> bool
This method tests for !=.
impl<E: Eq> Eq for IError<E>[src]
impl<E: Clone> Clone for IError<E>[src]
fn clone(&self) -> IError<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