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