pub trait KeysExt: Iterator { // Provided method fn keys(self) -> Keys<Self> ⓘ where Self: Sized { ... } }
Strip an iterator items (K, V) to only have K.
(K, V)
K
Retain keys and strip values from a crate::iter iterator.