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