RunResult

Type Alias RunResult 

Source
pub type RunResult<T, S> = Result<T, RunError<S>>;
Expand description

The result of running a command.

Aliased Type§

pub enum RunResult<T, S> {
    Ok(T),
    Err(RunError<S>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(RunError<S>)

Contains the error value