Trait tikv::storage::txn::TxnEntryStore [−][src]
Associated Types
type Scanner: TxnEntryScanner[src]
The scanner type returned by scanner().
Required methods
fn entry_scanner(
&self,
lower_bound: Option<Key>,
upper_bound: Option<Key>,
after_ts: TimeStamp,
output_delete: bool
) -> Result<Self::Scanner>[src]
&self,
lower_bound: Option<Key>,
upper_bound: Option<Key>,
after_ts: TimeStamp,
output_delete: bool
) -> Result<Self::Scanner>
Retrieve a scanner over the bounds.
Implementors
impl<S: Snapshot> TxnEntryStore for SnapshotStore<S>[src]
type Scanner = EntryScanner<S>
fn entry_scanner(
&self,
lower_bound: Option<Key>,
upper_bound: Option<Key>,
after_ts: TimeStamp,
output_delete: bool
) -> Result<EntryScanner<S>>[src]
&self,
lower_bound: Option<Key>,
upper_bound: Option<Key>,
after_ts: TimeStamp,
output_delete: bool
) -> Result<EntryScanner<S>>