pub type ParserResult<'a, O> = Result<(&'a str, O), Err<VerboseError<&'a str>>>;
The nom-compatible parser return type.
nom
enum ParserResult<'a, O> { Ok((&'a str, O)), Err(Err<VerboseError<&'a str>>), }
Contains the success value
Contains the error value