pub trait BatchExecutor {
type Request: Send + 'static;
type Response: Send + Sync + 'static;
// Required method
fn execute(
&self,
requests: Vec<(Self::Request, BatchResponse<Self::Response>)>,
) -> impl Future<Output = ()> + Send;
}
Expand description
A trait for executing batches
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.