pub struct Iter<'a, K, V> { /* private fields */ }
Expand description
An iterator over the entries of a LruCache
in least-recently-used to most-recently-used order.
This struct is created by the LruCache::iter
method.
Auto Trait Implementations§
impl<'a, K, V> Freeze for Iter<'a, K, V>
impl<'a, K, V> RefUnwindSafe for Iter<'a, K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<'a, K, V> Send for Iter<'a, K, V>
impl<'a, K, V> Sync for Iter<'a, K, V>
impl<'a, K, V> Unpin for Iter<'a, K, V>
impl<'a, K, V> UnwindSafe for Iter<'a, K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more