Result

Type Alias Result 

Source
pub type Result<R, O, E> = Result<(R, O), FatalError<E>>;
Expand description

Convenience type to simplify the signature of pipe result types

R: remaining input

O: Output

E: an error wrapped into a FatalError

Aliased Type§

pub enum Result<R, O, E> {
    Ok((R, O)),
    Err(FatalError<E>),
}

Variants§

§1.0.0

Ok((R, O))

Contains the success value

§1.0.0

Err(FatalError<E>)

Contains the error value