pub type ListGetMutFn = unsafe fn(PtrMut<'_>, usize) -> Option<PtrMut<'_>>;Expand description
Get mutable pointer to the element at index in the list, or None if the
index is out of bounds.
ยงSafety
The list parameter must point to aligned, initialized memory of the correct type.