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),
}pub type PResult<O, E = PipelineError> = Result<O, E>;Standard Result type for pipeline operations.
pub enum PResult<O, E = PipelineError> {
Ok(O),
Err(E),
}