pub trait VisitMutWith<V> where
    V: VisitMut + ?Sized
{ fn visit_mut_with(&mut self, v: &mut V); fn visit_mut_children_with(&mut self, v: &mut V); }
Expand description

A utility trait implemented for ast nodes, and allow to visit them with a visitor.

Required Methods

Calls a visitor method (v.visit_mut_xxx) with self.

Implementations on Foreign Types

Implementors