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