Trait TransactionGetter

pub trait TransactionGetter {
    type Transaction: Transaction;

    // Required method
    fn tx(&self) -> &Self::Transaction;
}

Required Associated Types§

Required Methods§

fn tx(&self) -> &Self::Transaction

Implementations on Foreign Types§

§

impl<'a, T> TransactionGetter for &'a T
where T: 'a + TransactionGetter + ?Sized,

§

impl<'a, T> TransactionGetter for &'a mut T
where T: 'a + TransactionGetter + ?Sized,

§

impl<T> TransactionGetter for Box<T>

§

impl<T> TransactionGetter for Arc<T>

Implementors§