Type Alias EvalResult

Source
pub type EvalResult<T, E> = Result<T, EvalError<E>>;
Expand description

Shorthand for a Result where the error type is a EvalSyncError.

Aliased Type§

pub enum EvalResult<T, E> {
    Ok(T),
    Err(EvalError<E>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(EvalError<E>)

Contains the error value