pub trait Visit<T: ?Sized + Visitable> {
    fn visit(&mut self, value: &T);
}

Required Methods

Implementations on Foreign Types

Implementors