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