pub type Result<T> = Result<T, PgmError>;
Result type for PGM operations.
pub enum Result<T> { Ok(T), Err(PgmError), }
Contains the success value
Contains the error value