pub enum TakeIdx<'a, I, INulls> where
I: TakeIterator,
INulls: TakeIteratorNulls, {
Array(&'a PrimitiveArray<u32>),
Iter(I),
IterNulls(INulls),
}
Expand description
One of the three arguments allowed in unchecked_take
Variants
Array(&'a PrimitiveArray<u32>)
Iter(I)
IterNulls(INulls)
Trait Implementations
sourceimpl<'a> From<&'a [u32]> for TakeIdx<'a, Map<Iter<'a, u32>, fn(&u32) -> usize>, Once<Option<usize>>>
impl<'a> From<&'a [u32]> for TakeIdx<'a, Map<Iter<'a, u32>, fn(&u32) -> usize>, Once<Option<usize>>>
Conversion from &[IdxSize]
to Unchecked TakeIdx
sourceimpl<'a> From<&'a ChunkedArray<UInt32Type>> for TakeIdx<'a, Once<usize>, Once<Option<usize>>>
impl<'a> From<&'a ChunkedArray<UInt32Type>> for TakeIdx<'a, Once<usize>, Once<Option<usize>>>
Conversion from UInt32Chunked to Unchecked TakeIdx
sourcefn from(
ca: &'a ChunkedArray<UInt32Type>
) -> TakeIdx<'a, Once<usize>, Once<Option<usize>>>
fn from(
ca: &'a ChunkedArray<UInt32Type>
) -> TakeIdx<'a, Once<usize>, Once<Option<usize>>>
Performs the conversion.
sourceimpl<'a> From<&'a Vec<u32, Global>> for TakeIdx<'a, Map<Iter<'a, u32>, fn(&u32) -> usize>, Once<Option<usize>>>
impl<'a> From<&'a Vec<u32, Global>> for TakeIdx<'a, Map<Iter<'a, u32>, fn(&u32) -> usize>, Once<Option<usize>>>
Conversion from &[IdxSize]
to Unchecked TakeIdx
Auto Trait Implementations
impl<'a, I, INulls> RefUnwindSafe for TakeIdx<'a, I, INulls> where
I: RefUnwindSafe,
INulls: RefUnwindSafe,
impl<'a, I, INulls> Send for TakeIdx<'a, I, INulls> where
I: Send,
INulls: Send,
impl<'a, I, INulls> Sync for TakeIdx<'a, I, INulls> where
I: Sync,
INulls: Sync,
impl<'a, I, INulls> Unpin for TakeIdx<'a, I, INulls> where
I: Unpin,
INulls: Unpin,
impl<'a, I, INulls> UnwindSafe for TakeIdx<'a, I, INulls> where
I: UnwindSafe,
INulls: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more