pub trait Executor<T>: Send {
// Required method
fn execute<'a, 'b>(
&'a self,
executors: &'b impl Executors,
t: T,
) -> ExecutionResult<'b>;
}Expand description
Executor trait
Required Methods§
sourcefn execute<'a, 'b>(
&'a self,
executors: &'b impl Executors,
t: T,
) -> ExecutionResult<'b>
fn execute<'a, 'b>( &'a self, executors: &'b impl Executors, t: T, ) -> ExecutionResult<'b>
Execute the node t
Object Safety§
This trait is not object safe.