Struct Iter
#[must_use = "iterators are lazy and do nothing unless consumed"]
pub struct Iter<'a, K: 'a, V: 'a> { pub(in ::collections::btree::map) range: LazyLeafRange<Immut<'a>, K, V>, pub(in ::collections::btree::map) length: usize }
An iterator over the entries of a BTreeMap.
This struct is created by the iter method on BTreeMap. See its
documentation for more.
Fields
range: LazyLeafRange<Immut<'a>, K, V>length: usize
Trait Implementations
impl<'a, K: 'a, V: 'a> Default for Iter<'a, K, V>
fn default() -> SelfCreates an empty
btree_map::Iter.# use btree_map; let iter: Iter = Defaultdefault; assert_eq!;
impl<'a, K: 'a, V: 'a> DoubleEndedIterator for Iter<'a, K, V>
fn next_back(&mut self) -> Option<(&'a K, &'a V)>
impl<'a, K: 'a, V: 'a> Iterator for Iter<'a, K, V>
type Item = (&'a K, &'a V);fn next(&mut self) -> Option<(&'a K, &'a V)>fn size_hint(&self) -> (usize, Option<usize>)fn last(self) -> Option<(&'a K, &'a V)>fn min(self) -> Option<(&'a K, &'a V)> where (&'a K, &'a V): Ord,fn max(self) -> Option<(&'a K, &'a V)> where (&'a K, &'a V): Ord,
impl<K, V> Clone for Iter<'_, K, V>
fn clone(&self) -> Self
impl<K, V> ExactSizeIterator for Iter<'_, K, V>
fn len(&self) -> usize
impl<K, V> FusedIterator for Iter<'_, K, V>
impl<K, V> TrustedLen for Iter<'_, K, V>
impl<K: Debug, V: Debug> Debug for Iter<'_, K, V>
fn fmt(&self, f: &mut Formatter<'_>) -> Result
Auto Trait Implementations
impl<'a, K, V> Freeze for Iter<'a, K, V>
where
LazyLeafRange<Immut<'a>, K, V>: Freeze,
impl<'a, K, V> RefUnwindSafe for Iter<'a, K, V>
where
LazyLeafRange<Immut<'a>, K, V>: RefUnwindSafe,
impl<'a, K, V> Send for Iter<'a, K, V>
where
LazyLeafRange<Immut<'a>, K, V>: Send,
impl<'a, K, V> Sync for Iter<'a, K, V>
where
LazyLeafRange<Immut<'a>, K, V>: Sync,
impl<'a, K, V> Unpin for Iter<'a, K, V>
where
LazyLeafRange<Immut<'a>, K, V>: Unpin,
impl<'a, K, V> UnsafeUnpin for Iter<'a, K, V>
where
LazyLeafRange<Immut<'a>, K, V>: UnsafeUnpin,
impl<'a, K, V> UnwindSafe for Iter<'a, K, V>
where
LazyLeafRange<Immut<'a>, K, V>: UnwindSafe,
Blanket Implementations
impl<I> IntoIterator for Iter<'a, K, V>
where
I: Iterator,
type Item = <I as Iterator>::Item;type IntoIter = I;fn into_iter(self) -> I
impl<T> Any for Iter<'a, K, V>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for Iter<'a, K, V>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for Iter<'a, K, V>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for Iter<'a, K, V>
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for Iter<'a, K, V>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> SizeHint for Iter<'a, K, V>
where
T: ?Sized,
fn lower_bound(&self) -> usizefn upper_bound(&self) -> Option<usize>
impl<T> SizedTypeProperties for Iter<'a, K, V>
impl<T> ToOwned for Iter<'a, K, V>
where
T: Clone,
type Owned = T;fn to_owned(&self) -> Tfn clone_into(&self, target: &mut T)
impl<T, U> Into<U> for Iter<'a, K, V>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for Iter<'a, K, V>
where
U: Into<T>,
type Error = Infallible;fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto<U> for Iter<'a, K, V>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>