pub trait KeyIter<K> { // Required method fn next(&mut self) -> Option<K>; }
Iterator for providing next key.