pub trait PlanBackend: Send + Sync {
// Required method
fn execute(
&self,
request: &PlanRequest,
) -> impl Future<Output = Result<PlanResult>> + Send;
}Expand description
Batch plan execution.
Required Methods§
fn execute( &self, request: &PlanRequest, ) -> impl Future<Output = Result<PlanResult>> + Send
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.