Trait KeyIter

Source
pub trait KeyIter<K> {
    // Required method
    fn next(&mut self) -> Option<K>;
}
Expand description

Iterator for providing next key.

Required Methods§

Source

fn next(&mut self) -> Option<K>

Implementors§