Type Alias SliceGetItemPtrFn

Source
pub type SliceGetItemPtrFn = unsafe fn(_: PtrConst<'_>, _: usize) -> PtrConst<'_>;
Expand description

Get pointer to the item at the given index. Panics if out of bounds.

ยงSafety

The slice parameter must point to aligned, initialized memory of the correct type.