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