pub type PiResult<T> = Result<T, Error>;
Result type alias using our error type.
pub enum PiResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value