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

trait for types that can be visited by ExpressionVisitor

Required Methods

accept a visitor, calling visit on all children of this

Implementors