Enum polars_core::chunked_array::ops::TakeIdx [−][src]
pub enum TakeIdx<'a, I, INulls> where
I: Iterator<Item = usize>,
INulls: Iterator<Item = Option<usize>>, { Array(&'a UInt32Array), Iter(I), IterNulls(INulls), }
Variants
Array(&'a UInt32Array)
Trait Implementations
impl<'a> From<&'a ChunkedArray<UInt32Type>> for TakeIdx<'a, Dummy<usize>, Dummy<Option<usize>>>
[src]
impl<'a> From<&'a ChunkedArray<UInt32Type>> for TakeIdx<'a, Dummy<usize>, Dummy<Option<usize>>>
[src]Performs the conversion.
Auto Trait Implementations
impl<'a, I, INulls> RefUnwindSafe for TakeIdx<'a, I, INulls> where
I: RefUnwindSafe,
INulls: RefUnwindSafe,
impl<'a, I, INulls> UnwindSafe for TakeIdx<'a, I, INulls> where
I: UnwindSafe,
INulls: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn cast(self) -> U
pub fn cast(self) -> U
Numeric cast from self
to T
.
pub fn from_cast(t: T) -> T
pub fn from_cast(t: T) -> T
Numeric cast from T
to Self
.
pub fn vzip(self) -> V