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
ExprRewritable in datafusion_expr::expr_rewriter - Rust
[go: Go Back, main page]

pub trait ExprRewritable: Sized {
    fn rewrite<R: ExprRewriter<Self>>(self, rewriter: &mut R) -> Result<Self>;
}
Expand description

a trait for marking types that are rewritable by ExprRewriter

Required Methods

rewrite the expression tree using the given ExprRewriter

Implementors