pub_just

Type Alias RunResult

Source
pub type RunResult<'a, T = ()> = Result<T, Error<'a>>;

Aliased Type§

enum RunResult<'a, T = ()> {
    Ok(T),
    Err(Error<'a>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error<'a>)

Contains the error value