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