pub struct ExplodedColumn<T> {
pub values: Vec<Option<T>>,
pub source_rows: Vec<usize>,
}Expand description
Result of exploding one list column.
Fields§
§values: Vec<Option<T>>Exploded values. Null and empty source lists both produce one null row.
source_rows: Vec<usize>Source row index for each exploded value.
Trait Implementations§
Source§impl<T: Clone> Clone for ExplodedColumn<T>
impl<T: Clone> Clone for ExplodedColumn<T>
Source§fn clone(&self) -> ExplodedColumn<T>
fn clone(&self) -> ExplodedColumn<T>
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<T: Debug> Debug for ExplodedColumn<T>
impl<T: Debug> Debug for ExplodedColumn<T>
impl<T: Eq> Eq for ExplodedColumn<T>
Source§impl<T: PartialEq> PartialEq for ExplodedColumn<T>
impl<T: PartialEq> PartialEq for ExplodedColumn<T>
impl<T: PartialEq> StructuralPartialEq for ExplodedColumn<T>
Auto Trait Implementations§
impl<T> Freeze for ExplodedColumn<T>
impl<T> RefUnwindSafe for ExplodedColumn<T>where
T: RefUnwindSafe,
impl<T> Send for ExplodedColumn<T>where
T: Send,
impl<T> Sync for ExplodedColumn<T>where
T: Sync,
impl<T> Unpin for ExplodedColumn<T>where
T: Unpin,
impl<T> UnsafeUnpin for ExplodedColumn<T>
impl<T> UnwindSafe for ExplodedColumn<T>where
T: UnwindSafe,
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