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