pub type ParserResult<'p, T> = Result<T, Error<'p>>;
enum ParserResult<'p, T> { Ok(T), Err(Error<'p>), }
Contains the success value
Contains the error value