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