pub trait TransactError: From<FdbError> {
    // Required method
    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§
fn try_into_fdb_error(self) -> Result<FdbError, Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.