Struct std::collections::btree_map::Values
[−]
[src]
pub struct Values<'a, K, V> where V: 'a, K: 'a {
// some fields omitted
}
1.0.0An iterator over a BTreeMap's values.
Trait Implementations
impl<'a, K, V> Clone for Values<'a, K, V>
fn clone(&self) -> Values<'a, K, V>
Unstable (
collections
#27783): library is unlikely to be stabilized with the current layout and name, use std::collections instead
fn clone_from(&mut self, source: &Self)
impl<'a, K, V> ExactSizeIterator for Values<'a, K, V>
fn len(&self) -> usize
Unstable (
collections
#27783): library is unlikely to be stabilized with the current layout and name, use std::collections instead
impl<'a, K, V> DoubleEndedIterator for Values<'a, K, V>
fn next_back(&mut self) -> Option<&'a V>
Unstable (
collections
#27783): library is unlikely to be stabilized with the current layout and name, use std::collections instead
impl<'a, K, V> Iterator for Values<'a, K, V>
type Item = &'a V
Unstable (
collections
#27783): library is unlikely to be stabilized with the current layout and name, use std::collections instead
fn next(&mut self) -> Option<&'a V>
Unstable (
collections
#27783): library is unlikely to be stabilized with the current layout and name, use std::collections instead
fn size_hint(&self) -> (usize, Option<usize>)
Unstable (
collections
#27783): library is unlikely to be stabilized with the current layout and name, use std::collections instead