pub type ParseResult<T> = Result<T, Error>;
Represents a parse result.
pub enum ParseResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value