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