Trait tikv::storage::txn::commands::ReadCommand[][src]

pub trait ReadCommand<S: Snapshot>: CommandExt {
    fn process_read(
        self,
        snapshot: S,
        statistics: &mut Statistics
    ) -> Result<ProcessResult>; }

Commands that do not need to modify the database during execution will implement this trait.

Required methods

fn process_read(
    self,
    snapshot: S,
    statistics: &mut Statistics
) -> Result<ProcessResult>
[src]

Loading content...

Implementors

impl<S: Snapshot> ReadCommand<S> for MvccByKey[src]

impl<S: Snapshot> ReadCommand<S> for MvccByStartTs[src]

impl<S: Snapshot> ReadCommand<S> for ResolveLockReadPhase[src]

Loading content...