RunResult

Type Alias RunResult 

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

Return type for in-place iteration

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(RunError)

Contains the error value