pub trait Visitable<'tcx> {
// Required method
fn visit<V: Visitor<'tcx>>(self, visitor: &mut V) -> V::Result;
}
Expand description
A type which can be visited.
Required 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.