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