pub type EvalResult<T> = Result<T, EvalError>;
Result type of any evaluation.
pub enum EvalResult<T> { Ok(T), Err(EvalError), }
Contains the success value
Contains the error value