pub trait VisitMut<T: Visitable> {
    fn visit_mut(&mut self, value: &mut T);
}

Required Methods

Implementations on Foreign Types

Implementors