pub trait Visitable {
// Required method
fn super_visit<V>(
&self,
visitor: &mut V,
) -> ControlFlow<<V as Visitor>::Break>
where V: Visitor;
// Provided method
fn visit<V>(&self, visitor: &mut V) -> ControlFlow<<V as Visitor>::Break>
where V: Visitor { ... }
}
Required Methods§
fn super_visit<V>(&self, visitor: &mut V) -> ControlFlow<<V as Visitor>::Break>where
V: Visitor,
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.