Trait tikv::storage::txn::store::TxnEntryStore[][src]

pub trait TxnEntryStore: Send {
    type Scanner: TxnEntryScanner;
    fn entry_scanner(
        &self,
        lower_bound: Option<Key>,
        upper_bound: Option<Key>,
        after_ts: TimeStamp,
        output_delete: bool
    ) -> Result<Self::Scanner>; }

Associated Types

type Scanner: TxnEntryScanner[src]

The scanner type returned by scanner().

Loading content...

Required methods

fn entry_scanner(
    &self,
    lower_bound: Option<Key>,
    upper_bound: Option<Key>,
    after_ts: TimeStamp,
    output_delete: bool
) -> Result<Self::Scanner>
[src]

Retrieve a scanner over the bounds.

Loading content...

Implementors

impl<S: Snapshot> TxnEntryStore for SnapshotStore<S>[src]

type Scanner = EntryScanner<S>

Loading content...