pub trait TransactError: From<FdbError> {
    fn try_into_fdb_error(self) -> Result<FdbError, Self>;
}
Expand description

A trait that must be implemented to use Database::transact this application error types.

Required Methods

Implementors