pub struct AgentExecutor;Trait Implementations§
Source§impl SandboxAwareExecutor for AgentExecutor
impl SandboxAwareExecutor for AgentExecutor
fn execute_sandboxed<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
&'life0 self,
step: &'life1 StepDef,
config: &'life2 StepConfig,
ctx: &'life3 Context,
sandbox: &'life4 SharedSandbox,
) -> Pin<Box<dyn Future<Output = Result<StepOutput, StepError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
'life4: 'async_trait,
Source§impl StepExecutor for AgentExecutor
impl StepExecutor for AgentExecutor
fn execute<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
step: &'life1 StepDef,
config: &'life2 StepConfig,
ctx: &'life3 Context,
) -> Pin<Box<dyn Future<Output = Result<StepOutput, StepError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
Auto Trait Implementations§
impl Freeze for AgentExecutor
impl RefUnwindSafe for AgentExecutor
impl Send for AgentExecutor
impl Sync for AgentExecutor
impl Unpin for AgentExecutor
impl UnsafeUnpin for AgentExecutor
impl UnwindSafe for AgentExecutor
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more