pub trait Phase {
// Required method
fn apply(&self, items: &mut Vec<Item>);
}Expand description
A Rust phase that operates on the AST.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".