OutputOutcomeResult

Type Alias OutputOutcomeResult 

Source
pub type OutputOutcomeResult<O> = Result<O, OutputOutcomeError>;

Aliased Type§

pub enum OutputOutcomeResult<O> {
    Ok(O),
    Err(OutputOutcomeError),
}

Variants§

§1.0.0

Ok(O)

Contains the success value

§1.0.0

Err(OutputOutcomeError)

Contains the error value