pub trait Fixer {
// Required methods
fn meta(&self) -> FixerMeta;
fn plan(
&self,
ctx: &PlanContext,
repo: &dyn RepoView,
receipts: &ReceiptSet,
) -> Result<Vec<PlanOp>>;
}Expand description
Contract each fixer implements.