pub trait VisitWith<V: Visit> {
    fn visit_with(&self, v: &mut V);
fn visit_children_with(&self, v: &mut V); }

Required methods

Visit children nodes of self with v

Implementations on Foreign Types

Visit children nodes of self with v

Implementors