pub trait InProcessStepExecutor: Send + Sync {
// Required method
fn try_execute<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
step: &'life1 PipelineStepConfig,
input: &'life2 MuninnEnvelopeV1,
) -> Pin<Box<dyn Future<Output = Option<Result<MuninnEnvelopeV1, InProcessStepError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
}