Trait test_coprocessor::ToTxnStore[][src]

pub trait ToTxnStore<S: Store> {
    fn to_store(&self) -> S;
}

A trait for a general implementation to convert to a Txn store.

Required methods

fn to_store(&self) -> S[src]

Converts to a specific Txn Store.

Loading content...

Implementors

impl<E: Engine> ToTxnStore<FixtureStore> for Store<E>[src]

impl<E: Engine> ToTxnStore<SnapshotStore<<E as Engine>::Snap>> for Store<E>[src]

impl<E: Engine, S: Store> ToTxnStore<S> for Store<E>[src]

Loading content...