pub struct CmdExecutor;Trait Implementations§
Source§impl SandboxAwareExecutor for CmdExecutor
impl SandboxAwareExecutor for CmdExecutor
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 CmdExecutor
impl StepExecutor for CmdExecutor
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 CmdExecutor
impl RefUnwindSafe for CmdExecutor
impl Send for CmdExecutor
impl Sync for CmdExecutor
impl Unpin for CmdExecutor
impl UnsafeUnpin for CmdExecutor
impl UnwindSafe for CmdExecutor
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