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