pub trait Visitable<'tcx> { fn visit<V: Visitor<'tcx>>(self, visitor: &mut V); }
A type which can be visited.
Calls the corresponding visit_* function on the visitor.
visit_*