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