Step

Type Alias Step 

Source
pub type Step<T> = Result<T, StepExit>;

Aliased Type§

pub enum Step<T> {
    Ok(T),
    Err(StepExit),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(StepExit)

Contains the error value

Trait Implementations§

Source§

impl<T> From<StepExit> for Step<T>

Source§

fn from(exit: StepExit) -> Step<T>

Converts to this type from the input type.