pub trait ExprVisitable: Sized {
    fn accept<V: ExpressionVisitor<Self>>(&self, visitor: V) -> Result<V>;
}
Expand description

trait for types that can be visited by ExpressionVisitor

Required methods

accept a visitor, calling visit on all children of this

Implementors