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