Expand description
Visitor traits allowing to traverse Type and related types.
Traits§
- Visit
- Recursive traversal across the shared reference to a
Type. - Visit
Mut - Recursive traversal across the exclusive reference to a
Type.
Functions§
- visit_
function - Default implementation of
Visit::visit_function(). - visit_
function_ mut - Default implementation of
VisitMut::visit_function_mut(). - visit_
object - Default implementation of
Visit::visit_object(). - visit_
object_ mut - Default implementation of
VisitMut::visit_object_mut(). - visit_
tuple - Default implementation of
Visit::visit_tuple(). - visit_
tuple_ mut - Default implementation of
VisitMut::visit_tuple_mut(). - visit_
type - Default implementation of
Visit::visit_type(). - visit_
type_ mut - Default implementation of
VisitMut::visit_type_mut().