Type Alias xscript::RunResult

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

The result of running a command.

Aliased Type§

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