Trait agent_tk::execution::tst::Executor

source ·
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§

source

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.

Implementors§