pub trait StageExecutor {
// Required method
fn execute(
&self,
stage_id: &StageId,
input: &Value,
) -> Result<Value, ExecutionError>;
}Expand description
Pluggable execution interface for individual stages.
pub trait StageExecutor {
// Required method
fn execute(
&self,
stage_id: &StageId,
input: &Value,
) -> Result<Value, ExecutionError>;
}Pluggable execution interface for individual stages.