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
ExprTreeNode in datafusion::physical_expr::utils - Rust
[go: Go Back, main page]

pub type ExprTreeNode<T> = ExprContext<Option<T>>;

Aliased Type§

struct ExprTreeNode<T> {
    pub expr: Arc<dyn PhysicalExpr>,
    pub data: Option<T>,
    pub children: Vec<ExprContext<Option<T>>>,
}

Fields§

§expr: Arc<dyn PhysicalExpr>

The physical expression associated with this context.

§data: Option<T>

Custom data payload of the node.

§children: Vec<ExprContext<Option<T>>>

Child contexts of this node.