pub type NomResult<'a, O> = IResult<&'a str, O, VerboseError<&'a str>>;
pub enum NomResult<'a, O> { Ok((&'a str, O)), Err(Err<VerboseError<&'a str>>), }
Contains the success value
Contains the error value