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§
Sourcefn apply_store(&mut self, store: &Store)
fn apply_store(&mut self, store: &Store)
Apply the request to specified TiKV store.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".