Trait datafusion_python::expr::logical_node::LogicalNode
source · pub trait LogicalNode {
// Required methods
fn inputs(&self) -> Vec<PyLogicalPlan>;
fn to_variant(&self, py: Python<'_>) -> PyResult<PyObject>;
}
Expand description
Representation of a LogicalNode
in the in overall LogicalPlan
any “node” shares these common traits in common.
Required Methods§
sourcefn inputs(&self) -> Vec<PyLogicalPlan>
fn inputs(&self) -> Vec<PyLogicalPlan>
The input plan to the current logical node instance.