pub trait Pass {
// Provided methods
fn pass_expr(&mut self, _expr: &mut Expr) { ... }
fn pass_stmt(&mut self, _stmt: &mut Stmt) { ... }
fn pass_program(&mut self, program: &mut Program) { ... }
}Provided Methods§
fn pass_expr(&mut self, _expr: &mut Expr)
fn pass_stmt(&mut self, _stmt: &mut Stmt)
fn pass_program(&mut self, program: &mut Program)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".