pub trait PlanFixer: Send + Sync {
// Required method
fn fix(&self, plan: &mut Plan) -> Result<bool, FixError>;
}Expand description
Plan fixer trait
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".