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]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl<E: PartialEq> PartialEq for IError<E>[src]
fn eq(&self, __arg_0: &IError<E>) -> bool[src]
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[src]
This method tests for !=.