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