pub trait Visitable<'tcx> {
    fn visit<V: Visitor<'tcx>>(self, visitor: &mut V);
}
Expand description

A type which can be visited.

Required Methods

Calls the corresponding visit_* function on the visitor.

Implementations on Foreign Types

Implementors