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