Struct hashlink::linked_hash_map::OccupiedEntry
source · [−]pub struct OccupiedEntry<'a, K, V> { /* private fields */ }
Implementations
sourceimpl<'a, K, V> OccupiedEntry<'a, K, V>
impl<'a, K, V> OccupiedEntry<'a, K, V>
pub fn key(&self) -> &K
pub fn remove_entry(self) -> (K, V)
pub fn get(&self) -> &V
pub fn get_mut(&mut self) -> &mut V
pub fn into_mut(self) -> &'a mut V
pub fn to_back(&mut self)
pub fn to_front(&mut self)
sourcepub fn insert(&mut self, value: V) -> V
pub fn insert(&mut self, value: V) -> V
Replaces this entry’s value with the provided value.
Similarly to LinkedHashMap::insert
, this moves the existing entry to the back of the
internal linked list.
pub fn remove(self) -> V
sourcepub fn insert_entry(self, value: V) -> (K, V)
pub fn insert_entry(self, value: V) -> (K, V)
Similar to OccupiedEntry::replace_entry
, but does move the entry to the back of the
internal linked list.
sourcepub fn replace_entry(self, value: V) -> (K, V)
pub fn replace_entry(self, value: V) -> (K, V)
Replaces the entry’s key with the key provided to LinkedHashMap::entry
, and replaces the
entry’s value with the given value
parameter.
Does not move the entry to the back of the internal linked list.
sourcepub fn replace_key(self) -> K
pub fn replace_key(self) -> K
Replaces this entry’s key with the key provided to LinkedHashMap::entry
.
Does not move the entry to the back of the internal linked list.
Trait Implementations
Auto Trait Implementations
impl<'a, K, V> RefUnwindSafe for OccupiedEntry<'a, K, V> where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<'a, K, V> Send for OccupiedEntry<'a, K, V> where
K: Send,
V: Send,
impl<'a, K, V> Sync for OccupiedEntry<'a, K, V> where
K: Sync,
V: Sync,
impl<'a, K, V> Unpin for OccupiedEntry<'a, K, V> where
K: Unpin,
impl<'a, K, V> !UnwindSafe for OccupiedEntry<'a, K, V>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more