[][src]Trait foundationdb::TransactError

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

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>

Loading content...

Implementors

impl TransactError for HcaError[src]

impl TransactError for FdbError[src]

impl<T> TransactError for T where
    T: From<FdbError> + TryInto<FdbError, Error = T>, 
[src]

Loading content...