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