pub type IResult<T, O> = IResult<T, O, ErrorTree<T>>;
Redeclaration that uses ErrorTree instead of the default nom::Error.
pub enum IResult<T, O> { Ok((T, O)), Err(Err<ErrorTree<T>>), }
Contains the success value
Contains the error value