pub trait VisitWith<V>: Visitablewhere
    V: ?Sized,
{ fn visit_children_with(&self, visitor: &mut V); fn visit_with(&self, visitor: &mut V)
    where
        V: Visit<Self>
, { ... } }

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors

Noop.