pub type PipeResult<T> = Result<T, Error>;
A specialized Result for pipeline operations
pub enum PipeResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value