Trait datafusion::logical_plan::ExprRewriter [−][src]
pub trait ExprRewriter: Sized { fn mutate(&mut self, expr: Expr) -> Result<Expr>; fn pre_visit(&mut self, _expr: &Expr) -> Result<bool> { ... } }
Expand description
Trait for potentially recursively rewriting an Expr
expression
tree. When passed to Expr::rewrite
, ExpressionVisitor::mutate
is
invoked recursively on all nodes of an expression tree. See the
comments on Expr::rewrite
for details on its use