pub type IterNextBackFn<T> = unsafe fn(iter: PtrMut) -> Option<<T as IterItem>::Item>;Expand description
Advance the iterator in reverse, returning the next value from the end of the iterator.
ยงSafety
The iter parameter must point to aligned, initialized memory of the correct type.