pub struct IterMut<'a, K, V> { /* private fields */ }
Expand description
A mutable iterator over the entries of a LruCache
in least-recently-used to most-recently-used order.
This struct is created by the LruCache::iter_mut
method.
Auto Trait Implementations§
impl<'a, K, V> Freeze for IterMut<'a, K, V>
impl<'a, K, V> RefUnwindSafe for IterMut<'a, K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<'a, K, V> Send for IterMut<'a, K, V>
impl<'a, K, V> Sync for IterMut<'a, K, V>
impl<'a, K, V> Unpin for IterMut<'a, K, V>
impl<'a, K, V> !UnwindSafe for IterMut<'a, K, V>
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