Type Alias MapIterNextFn

Source
pub type MapIterNextFn = for<'iter> unsafe fn(PtrMut<'iter>) -> Option<(PtrConst<'iter>, PtrConst<'iter>)>;
Expand description

Get the next key-value pair from the iterator

ยงSafety

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