pub trait PipelineExecutor<I, O> {
// Required methods
fn execute(&self, pipeline: &Pipeline<I, O>, input: I) -> Result<O>;
fn name(&self) -> &str;
}Expand description
Trait for pipeline executors
pub trait PipelineExecutor<I, O> {
// Required methods
fn execute(&self, pipeline: &Pipeline<I, O>, input: I) -> Result<O>;
fn name(&self) -> &str;
}Trait for pipeline executors