Struct collections::btree_map::IntoIter 1.0.0
[−]
[src]
pub struct IntoIter<K, V> { /* fields omitted */ }
An owning iterator over the entries of a BTreeMap
.
This struct
is created by the into_iter
method on BTreeMap
(provided by the IntoIterator
trait). See its documentation for more.
Trait Implementations
impl<K, V> Iterator for IntoIter<K, V>
[src]
type Item = (K, V)
fn next(&mut self) -> Option<(K, V)>
fn size_hint(&self) -> (usize, Option<usize>)
impl<K, V> Debug for IntoIter<K, V> where
K: Debug,
V: Debug,
1.17.0[src]
K: Debug,
V: Debug,