pub trait CreateBasicExecutor {
// Required method
fn create_basic_executor(&self) -> Executor;
}
Expand description
This trait allows Context
to create a basic executor.
Required Methods§
Sourcefn create_basic_executor(&self) -> Executor
fn create_basic_executor(&self) -> Executor
Create a basic executor associated with this Context
.