pub type PipeResult<T> = Result<T, PipeError>;
pub enum PipeResult<T> { Ok(T), Err(PipeError), }
Contains the success value
Contains the error value