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> DoubleEndedIterator for IntoIter<K, V>
[src]
impl<K, V> Drop for IntoIter<K, V>
1.7.0[src]
impl<K, V> Debug for IntoIter<K, V> where
K: Debug,
V: Debug,
1.17.0[src]
K: Debug,
V: Debug,
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter.