pub enum Entry<'a, A: ?Sized + Downcast, V: 'a> {
Occupied(OccupiedEntry<'a, A, V>),
Vacant(VacantEntry<'a, A, V>),
}Expand description
A view into a single location in an Map, which may be vacant or occupied.
Variants§
Implementations§
Source§impl<'a, A: ?Sized + Downcast, V: IntoBox<A>> Entry<'a, A, V>
impl<'a, A: ?Sized + Downcast, V: IntoBox<A>> Entry<'a, A, V>
Sourcepub fn or_insert(self, default: V) -> &'a mut V
pub fn or_insert(self, default: V) -> &'a mut V
Ensures a value is in the entry by inserting the default if empty, and returns a mutable reference to the value in the entry.
Sourcepub fn or_insert_with<F: FnOnce() -> V>(self, default: F) -> &'a mut V
pub fn or_insert_with<F: FnOnce() -> V>(self, default: F) -> &'a mut V
Ensures a value is in the entry by inserting the result of the default function if empty, and returns a mutable reference to the value in the entry.
Sourcepub fn or_default(self) -> &'a mut Vwhere
V: Default,
pub fn or_default(self) -> &'a mut Vwhere
V: Default,
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 V)>(self, f: F) -> Self
pub fn and_modify<F: FnOnce(&mut V)>(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, A, V> Freeze for Entry<'a, A, V>where
A: ?Sized,
impl<'a, A, V> RefUnwindSafe for Entry<'a, A, V>
impl<'a, A, V> Send for Entry<'a, A, V>
impl<'a, A, V> Sync for Entry<'a, A, V>
impl<'a, A, V> Unpin for Entry<'a, A, V>
impl<'a, A, V> !UnwindSafe for Entry<'a, A, 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