pub type Result<T> = Result<T, PtError>;
Standard-issue Result alias, with PtError.
Result
PtError
pub enum Result<T> { Ok(T), Err(PtError), }
Contains the success value
Contains the error value