pub trait Visit {
    fn visit<'ast, V>(&'ast self, _: &mut V)
    where
        V: Visitor<'ast>
; fn visit_mut<V>(&mut self, _: &mut V)
    where
        V: VisitorMut
; }
Expand description

An AST node that can be visited

Required Methods§

Implementations on Foreign Types§

Implementors§