Trait tikv_client::request::plan::Process
source · pub trait Process<In>: Sized + Clone + Send + Sync + 'static {
type Out: Send;
// Required method
fn process(&self, input: Result<In>) -> Result<Self::Out>;
}
Expand description
Process data into another kind of data.
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.