pub trait KvRequest: Request + Sized + Clone + Sync + Send + 'static {
    type Response: HasKeyErrors + HasLocks + Clone + Send + 'static;
}
Expand description

Abstracts any request sent to a TiKV server.

Required Associated Types§

source

type Response: HasKeyErrors + HasLocks + Clone + Send + 'static

The expected response to the request.

Object Safety§

This trait is not object safe.

Implementors§