pub type DbResult<T> = Result<T, DbError>;
Type alias for Results using DbError
pub enum DbResult<T> { Ok(T), Err(DbError), }
Contains the success value
Contains the error value