IterNextFn

Type Alias IterNextFn 

Source
pub type IterNextFn<T> = unsafe fn(iter: PtrMut) -> Option<<T as IterItem>::Item>;
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.