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