pub trait VisitMutWith<V>: Visitablewhere
    V: ?Sized,
{ fn visit_mut_children_with(&mut self, visitor: &mut V); fn visit_mut_with(&mut self, visitor: &mut V)
    where
        V: VisitMut<Self>
, { ... } }

Required Methods

Provided Methods

Implementations on Foreign Types

Noop.

Implementors

Noop.