Skip to main content

PlanFixer

Trait PlanFixer 

Source
pub trait PlanFixer: Send + Sync {
    // Required method
    fn fix(&self, plan: &mut Plan) -> Result<bool, FixError>;
}
Expand description

Plan fixer trait

Required Methods§

Source

fn fix(&self, plan: &mut Plan) -> Result<bool, FixError>

Attempt to fix a plan Returns true if any fixes were applied

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§