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>),
}