Struct datafusion_expr::logical_plan::Unnest
source · pub struct Unnest {
pub input: Arc<LogicalPlan>,
pub column: Column,
pub schema: DFSchemaRef,
pub options: UnnestOptions,
}
Expand description
Unnest a column that contains a nested list type. See
UnnestOptions
for more details.
Fields§
§input: Arc<LogicalPlan>
The incoming logical plan
column: Column
The column to unnest
schema: DFSchemaRef
The output schema, containing the unnested field column.
options: UnnestOptions
Options
Trait Implementations§
source§impl PartialEq<Unnest> for Unnest
impl PartialEq<Unnest> for Unnest
impl Eq for Unnest
impl StructuralEq for Unnest
impl StructuralPartialEq for Unnest
Auto Trait Implementations§
impl !RefUnwindSafe for Unnest
impl Send for Unnest
impl Sync for Unnest
impl Unpin for Unnest
impl !UnwindSafe for Unnest
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.