Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
ExprVisitable in datafusion_expr::expr_visitor - Rust
[go: Go Back, main page]

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