Skip to main content

TransactError

Trait TransactError 

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

Re-export the foundationdb crate for convenience. A trait that must be implemented to use Database::transact this application error types.

Required Methods§

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.

Implementors§