pub trait CompilerPass<S: WorkflowState, M: MergeStrategy<S>>: Send + Sync {
// Required methods
fn name(&self) -> &str;
fn run(&self, graph: &mut Graph<S, M>, ctx: &mut CompilerContext<S>) -> bool;
}Expand description
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".