pub trait VisitAllWith<V: ?Sized + VisitAll> {
    fn visit_all_with(&self, v: &mut V);
    fn visit_all_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