pub type EvalResult<T, E> = Result<T, EvalError<E>>;
Shorthand for a Result where the error type is a EvalSyncError.
Result
EvalSyncError
pub enum EvalResult<T, E> { Ok(T), Err(EvalError<E>), }
Contains the success value
Contains the error value