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