pub trait VisitableNode: ValidateNode {
// Provided methods
fn route_key(&self) -> String { ... }
fn accept<V: Visitor>(&self, visitor: &mut V) { ... }
fn drive<V: Visitor>(&self, _: &mut V) { ... }
}Expand description
VisitableNode
Provided Methods§
fn route_key(&self) -> String
fn accept<V: Visitor>(&self, visitor: &mut V)
fn drive<V: Visitor>(&self, _: &mut V)
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.