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