pub trait StoreRequest {
    // Required method
    fn apply_store(&mut self, store: &Store);
}
Expand description

For requests or plans which are handled at TiKV store (other than region) level.

Required Methods§

source

fn apply_store(&mut self, store: &Store)

Apply the request to specified TiKV store.

Implementors§