pub trait MergeStrategy: Send + Sync {
// Required methods
fn name(&self) -> &'static str;
fn merge(&self, base: &str, left: &str, right: &str) -> MergeOutcome;
}Expand description
The strategy seam: one slot in the Pipeline.
Required Methods§
Sourcefn name(&self) -> &'static str
fn name(&self) -> &'static str
Stable identifier, recorded in PipelineResult::strategy for
provenance and review escalation.