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