Skip to main content

PResult

Type Alias PResult 

Source
pub type PResult<O, E = PipelineError> = Result<O, E>;
Expand description

Standard Result type for pipeline operations.

Aliased Type§

pub enum PResult<O, E = PipelineError> {
    Ok(O),
    Err(E),
}

Variants§

§1.0.0

Ok(O)

Contains the success value

§1.0.0

Err(E)

Contains the error value