pub type DbmsResult<T> = Result<T, DbmsError>;
DBMS result type.
pub enum DbmsResult<T> { Ok(T), Err(DbmsError), }
Contains the success value
Contains the error value