Type Alias ExecResult

Source
pub type ExecResult<T, E> = Result<T, ExecError<E>>;
Expand description

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

Aliased Type§

pub enum ExecResult<T, E> {
    Ok(T),
    Err(ExecError<E>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ExecError<E>)

Contains the error value