pub trait ChunkTakeUnchecked<Idx>where
Idx: ?Sized,{
// Required method
unsafe fn take_unchecked(&self, indices: &Idx) -> Self;
}
Required Methods§
Sourceunsafe fn take_unchecked(&self, indices: &Idx) -> Self
unsafe fn take_unchecked(&self, indices: &Idx) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl ChunkTakeUnchecked<ChunkedArray<UInt32Type>> for ChunkedArray<BinaryType>
impl ChunkTakeUnchecked<ChunkedArray<UInt32Type>> for ChunkedArray<FixedSizeListType>
Available on crate feature
dtype-array
only.impl ChunkTakeUnchecked<ChunkedArray<UInt32Type>> for ChunkedArray<ListType>
impl ChunkTakeUnchecked<ChunkedArray<UInt32Type>> for ChunkedArray<StringType>
impl ChunkTakeUnchecked<ChunkedArray<UInt32Type>> for ChunkedArray<StructType>
Available on crate feature
dtype-struct
only.impl<I> ChunkTakeUnchecked<I> for ChunkedArray<BinaryType>
impl<I> ChunkTakeUnchecked<I> for ChunkedArray<FixedSizeListType>
Available on crate feature
dtype-array
only.impl<I> ChunkTakeUnchecked<I> for ChunkedArray<ListType>
impl<I> ChunkTakeUnchecked<I> for ChunkedArray<StringType>
impl<I> ChunkTakeUnchecked<I> for ChunkedArray<StructType>
Available on crate feature
dtype-struct
only.