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