pub trait Executable {
// Required method
fn execute(
&self,
ctx: &mut Context,
filters: &FilterLibrary,
cache: &dyn CacheStore,
) -> Result<()>;
}Expand description
Execute a compiled plan synchronously. For parallel branches, uses the async executor under the hood. Contract for executing a plan.
Required Methods§
fn execute( &self, ctx: &mut Context, filters: &FilterLibrary, cache: &dyn CacheStore, ) -> Result<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".