pub trait StepExecutor: Send + Sync {
// Required methods
fn kind(&self) -> &'static str;
fn execute<'life0, 'life1, 'async_trait>(
&'life0 self,
ctx: &'life1 StepCtx,
) -> Pin<Box<dyn Future<Output = Result<StepExecutionResult>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}Expand description
Shared interface implemented by every runtime executor.