Struct hashbrown::hash_map::RawOccupiedEntryMut[][src]

pub struct RawOccupiedEntryMut<'a, K, V, S, A: Allocator + Clone = Global> { /* fields omitted */ }

A view into an occupied entry in a HashMap. It is part of the RawEntryMut enum.

Implementations

impl<'a, K, V, S, A: Allocator + Clone> RawOccupiedEntryMut<'a, K, V, S, A>[src]

pub fn key(&self) -> &K[src]

Gets a reference to the key in the entry.

pub fn key_mut(&mut self) -> &mut K[src]

Gets a mutable reference to the key in the entry.

pub fn into_key(self) -> &'a mut K[src]

Converts the entry into a mutable reference to the key in the entry with a lifetime bound to the map itself.

pub fn get(&self) -> &V[src]

Gets a reference to the value in the entry.

pub fn into_mut(self) -> &'a mut V[src]

Converts the OccupiedEntry into a mutable reference to the value in the entry with a lifetime bound to the map itself.

pub fn get_mut(&mut self) -> &mut V[src]

Gets a mutable reference to the value in the entry.

pub fn get_key_value(&mut self) -> (&K, &V)[src]

Gets a reference to the key and value in the entry.

pub fn get_key_value_mut(&mut self) -> (&mut K, &mut V)[src]

Gets a mutable reference to the key and value in the entry.

pub fn into_key_value(self) -> (&'a mut K, &'a mut V)[src]

Converts the OccupiedEntry into a mutable reference to the key and value in the entry with a lifetime bound to the map itself.

pub fn insert(&mut self, value: V) -> V[src]

Sets the value of the entry, and returns the entry’s old value.

pub fn insert_key(&mut self, key: K) -> K[src]

Sets the value of the entry, and returns the entry’s old value.

pub fn remove(self) -> V[src]

Takes the value out of the entry, and returns it.

pub fn remove_entry(self) -> (K, V)[src]

Take the ownership of the key and value from the map.

pub fn replace_entry_with<F>(self, f: F) -> RawEntryMut<'a, K, V, S, A> where
    F: FnOnce(&K, V) -> Option<V>, 
[src]

Provides shared access to the key and owned access to the value of the entry and allows to replace or remove it based on the value of the returned option.

Trait Implementations

impl<K: Debug, V: Debug, S, A: Allocator + Clone> Debug for RawOccupiedEntryMut<'_, K, V, S, A>[src]

impl<K, V, S, A> Send for RawOccupiedEntryMut<'_, K, V, S, A> where
    K: Send,
    V: Send,
    A: Send + Allocator + Clone
[src]

impl<K, V, S, A> Sync for RawOccupiedEntryMut<'_, K, V, S, A> where
    K: Sync,
    V: Sync,
    A: Send + Allocator + Clone
[src]

Auto Trait Implementations

impl<'a, K, V, S, A> RefUnwindSafe for RawOccupiedEntryMut<'a, K, V, S, A> where
    A: RefUnwindSafe,
    K: RefUnwindSafe,
    S: RefUnwindSafe,
    V: RefUnwindSafe

impl<'a, K, V, S, A> Unpin for RawOccupiedEntryMut<'a, K, V, S, A>

impl<'a, K, V, S, A = Global> !UnwindSafe for RawOccupiedEntryMut<'a, K, V, S, A>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.