pub type ParseResult<T> = Result<T, String>;
The result of a parse operation: either a value or a parse error.
pub enum ParseResult<T> { Ok(T), Err(String), }
Contains the success value
Contains the error value