pub type NomResult<'a, T> = IResult<InputSpan<'a>, T, Error>;
Parsing outcome generalized by the type returned on success.
pub enum NomResult<'a, T> { Ok((LocatedSpan<&'a str>, T)), Err(Err<Error>), }
Contains the success value
Contains the error value