pub type ParseResult<T> = Result<T, ParseError>;
A specialized result type used by Parse and Parser.
Parse
Parser
pub enum ParseResult<T> { Ok(T), Err(ParseError), }
Contains the success value
Contains the error value