Trait AgentRunnable

Source
pub trait AgentRunnable {
    // Required method
    fn run_agent(self, agent_inner: AgentInnerRunner);
}
Expand description

Functional interface representing the execution of the Agent

Required Methods§

Source

fn run_agent(self, agent_inner: AgentInnerRunner)

Run the Agent. Must end with a call to agent_inner.enter_agent_loop()

Implementors§