pub enum Entry<'a, K, T> {
Vacant(VacantEntry<'a, K, T>),
Occupied(OccupiedEntry<'a, K, T>),
}
Expand description
A view into an in-place entry in a map that can be vacant or occupied.
Variants§
Implementations§
Source§impl<'a, K: EntryKey, T> Entry<'a, K, T>
impl<'a, K: EntryKey, T> Entry<'a, K, T>
Sourcepub fn or_insert(self, default: T) -> &'a mut Twhere
K: EntryKey,
pub fn or_insert(self, default: T) -> &'a mut Twhere
K: EntryKey,
Ensures a value is in the entry by inserting default
if empty, and
returns a mutable reference to the value in the entry.
Sourcepub fn or_insert_with<F: FnOnce() -> T>(self, f: F) -> &'a mut Twhere
K: EntryKey,
pub fn or_insert_with<F: FnOnce() -> T>(self, f: F) -> &'a mut Twhere
K: EntryKey,
Ensures a value is in the entry by inserting the result of the function
f
if empty, and returns a mutable reference to the value in the entry.
Sourcepub fn or_default(self) -> &'a mut T
pub fn or_default(self) -> &'a mut T
Ensures a value is in the entry by inserting the default value if empty, and returns a mutable reference to the value in the entry.
Sourcepub fn and_modify<F: FnOnce(&mut T)>(self, f: F) -> Self
pub fn and_modify<F: FnOnce(&mut T)>(self, f: F) -> Self
Provides in-place mutable access to an occupied entry before any potential inserts into the map.
Auto Trait Implementations§
impl<'a, K, T> Freeze for Entry<'a, K, T>where
K: Freeze,
impl<'a, K, T> RefUnwindSafe for Entry<'a, K, T>where
K: RefUnwindSafe,
T: RefUnwindSafe,
impl<'a, K, T> Send for Entry<'a, K, T>
impl<'a, K, T> Sync for Entry<'a, K, T>
impl<'a, K, T> Unpin for Entry<'a, K, T>where
K: Unpin,
impl<'a, K, T> !UnwindSafe for Entry<'a, K, T>
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