pub struct RecursionUnnestOption {
pub input_column: Column,
pub output_column: Column,
pub depth: usize,
}Expand description
Instruction on how to unnest a column (mostly with a list type) such as how to name the output, and how many level it should be unnested
Fields§
§input_column: Column§output_column: Column§depth: usizeTrait Implementations§
Source§impl Clone for RecursionUnnestOption
impl Clone for RecursionUnnestOption
Source§fn clone(&self) -> RecursionUnnestOption
fn clone(&self) -> RecursionUnnestOption
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RecursionUnnestOption
impl Debug for RecursionUnnestOption
impl Eq for RecursionUnnestOption
Source§impl Hash for RecursionUnnestOption
impl Hash for RecursionUnnestOption
Source§impl PartialEq for RecursionUnnestOption
impl PartialEq for RecursionUnnestOption
Source§fn eq(&self, other: &RecursionUnnestOption) -> bool
fn eq(&self, other: &RecursionUnnestOption) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for RecursionUnnestOption
impl PartialOrd for RecursionUnnestOption
impl StructuralPartialEq for RecursionUnnestOption
Auto Trait Implementations§
impl Freeze for RecursionUnnestOption
impl RefUnwindSafe for RecursionUnnestOption
impl Send for RecursionUnnestOption
impl Sync for RecursionUnnestOption
impl Unpin for RecursionUnnestOption
impl UnsafeUnpin for RecursionUnnestOption
impl UnwindSafe for RecursionUnnestOption
Blanket Implementations§
impl<T> Allocation for T
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.