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