Struct OccupiedEntry
pub struct OccupiedEntry<'a, K: 'a, V: 'a, A: Allocator = Global> { pub(in ::collections::hash::map) base: RustcOccupiedEntry<'a, K, V, A> }
A view into an occupied entry in a HashMap.
It is part of the Entry enum.
Fields
base: RustcOccupiedEntry<'a, K, V, A>
Implementations
impl<'a, K, V, A: Allocator> OccupiedEntry<'a, K, V, A>
fn key(&self) -> &KGets a reference to the key in the entry.
Examples
use HashMap; let mut map: = new; map.entry.or_insert; assert_eq!;fn remove_entry(self) -> (K, V)Take the ownership of the key and value from the map.
Examples
use HashMap; use Entry; let mut map: = new; map.entry.or_insert; if let Occupied = map.entry assert_eq!;fn get(&self) -> &VGets a reference to the value in the entry.
Examples
use HashMap; use Entry; let mut map: = new; map.entry.or_insert; if let Occupied = map.entryfn get_mut(&mut self) -> &mut VGets a mutable reference to the value in the entry.
If you need a reference to the
OccupiedEntrywhich may outlive the destruction of theEntryvalue, seeinto_mut.Examples
use HashMap; use Entry; let mut map: = new; map.entry.or_insert; assert_eq!; if let Occupied = map.entry assert_eq!;fn into_mut(self) -> &'a mut VConverts the
OccupiedEntryinto a mutable reference to the value in the entry with a lifetime bound to the map itself.If you need multiple references to the
OccupiedEntry, seeget_mut.Examples
use HashMap; use Entry; let mut map: = new; map.entry.or_insert; assert_eq!; if let Occupied = map.entry assert_eq!;fn insert(&mut self, value: V) -> VSets the value of the entry, and returns the entry's old value.
Examples
use HashMap; use Entry; let mut map: = new; map.entry.or_insert; if let Occupied = map.entry assert_eq!;fn remove(self) -> VTakes the value out of the entry, and returns it.
Examples
use HashMap; use Entry; let mut map: = new; map.entry.or_insert; if let Occupied = map.entry assert_eq!;
Trait Implementations
impl<K: Debug, V: Debug, A: Allocator> Debug for OccupiedEntry<'_, K, V, A>
fn fmt(&self, f: &mut Formatter<'_>) -> Result
Auto Trait Implementations
impl<'a, K, V, A = Global> !UnwindSafe for OccupiedEntry<'a, K, V, A>
impl<'a, K, V, A> Freeze for OccupiedEntry<'a, K, V, A>
where
RustcOccupiedEntry<'a, K, V, A>: Freeze,
impl<'a, K, V, A> RefUnwindSafe for OccupiedEntry<'a, K, V, A>
where
RustcOccupiedEntry<'a, K, V, A>: RefUnwindSafe,
impl<'a, K, V, A> Send for OccupiedEntry<'a, K, V, A>
where
RustcOccupiedEntry<'a, K, V, A>: Send,
impl<'a, K, V, A> Sync for OccupiedEntry<'a, K, V, A>
where
RustcOccupiedEntry<'a, K, V, A>: Sync,
impl<'a, K, V, A> Unpin for OccupiedEntry<'a, K, V, A>
where
RustcOccupiedEntry<'a, K, V, A>: Unpin,
impl<'a, K, V, A> UnsafeUnpin for OccupiedEntry<'a, K, V, A>
where
RustcOccupiedEntry<'a, K, V, A>: UnsafeUnpin,
Blanket Implementations
impl<T> Any for OccupiedEntry<'a, K, V, A>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for OccupiedEntry<'a, K, V, A>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for OccupiedEntry<'a, K, V, A>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> From<T> for OccupiedEntry<'a, K, V, A>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> SizeHint for OccupiedEntry<'a, K, V, A>
where
T: ?Sized,
fn lower_bound(&self) -> usizefn upper_bound(&self) -> Option<usize>
impl<T> SizedTypeProperties for OccupiedEntry<'a, K, V, A>
impl<T, U> Into<U> for OccupiedEntry<'a, K, V, A>
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 OccupiedEntry<'a, K, V, A>
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 OccupiedEntry<'a, K, V, A>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>