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