pub type PGResult<T> = Result<T, PGError>;
Shorthand for Result with tokio_postgres::Error
pub enum PGResult<T> { Ok(T), Err(PGError), }
Contains the success value
Contains the error value