pub trait ChunkTakeUnchecked<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.