struct Interleave<'a, T> {
    arrays: Vec<&'a T>,
    nulls: Option<NullBuffer>,
}Expand description
Common functionality for interleaving arrays
T is the concrete Array type
Fields§
§arrays: Vec<&'a T>The input arrays downcast to T
nulls: Option<NullBuffer>The null buffer of the interleaved output
Implementations§
Auto Trait Implementations§
impl<'a, T> Freeze for Interleave<'a, T>
impl<'a, T> RefUnwindSafe for Interleave<'a, T>where
    T: RefUnwindSafe,
impl<'a, T> Send for Interleave<'a, T>where
    T: Sync,
impl<'a, T> Sync for Interleave<'a, T>where
    T: Sync,
impl<'a, T> Unpin for Interleave<'a, T>
impl<'a, T> UnwindSafe for Interleave<'a, T>where
    T: RefUnwindSafe,
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