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