pub type OrmResult<T> = Result<T, OrmError>;
Result type alias for pgorm operations
pub enum OrmResult<T> { Ok(T), Err(OrmError), }
Contains the success value
Contains the error value