VisitableNode

Trait VisitableNode 

Source
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§

Source

fn route_key(&self) -> String

Source

fn accept<V: Visitor>(&self, visitor: &mut V)

Source

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.

Implementors§