pub enum Entry<'a, K, V>{
Occupied(OccupiedEntry<'a, K, V>),
Vacant(VacantEntry<'a, K, V>),
}Expand description
Same as std::collections::btree_map::Entry.
Variants§
Occupied(OccupiedEntry<'a, K, V>)
Vacant(VacantEntry<'a, K, V>)
Implementations§
Source§impl<'a, K, V> Entry<'a, K, V>
impl<'a, K, V> Entry<'a, K, V>
Sourcepub fn or_insert(self, default: V) -> Result<&'a mut V, OutOfMemory>
pub fn or_insert(self, default: V) -> Result<&'a mut V, OutOfMemory>
Same as std::collections::btree_map::Entry::or_insert but returns an
error on allocation failure.
Sourcepub fn or_insert_with<F>(self, default: F) -> Result<&'a mut V, OutOfMemory>where
F: FnOnce() -> V,
pub fn or_insert_with<F>(self, default: F) -> Result<&'a mut V, OutOfMemory>where
F: FnOnce() -> V,
Same as std::collections::btree_map::Entry::or_insert_with but
returns an error on allocation failure.
Sourcepub fn or_insert_with_key<F>(self, default: F) -> Result<&'a mut V, OutOfMemory>where
F: FnOnce(K) -> V,
pub fn or_insert_with_key<F>(self, default: F) -> Result<&'a mut V, OutOfMemory>where
F: FnOnce(K) -> V,
Same as std::collections::btree_map::Entry::or_insert_with_key but
returns an error on allocation failure.
Sourcepub fn and_modify<F>(self, f: F) -> Self
pub fn and_modify<F>(self, f: F) -> Self
Sourcepub fn insert_entry(
self,
value: V,
) -> Result<OccupiedEntry<'a, K, V>, OutOfMemory>
pub fn insert_entry( self, value: V, ) -> Result<OccupiedEntry<'a, K, V>, OutOfMemory>
Same as std::collections::btree_map::Entry::and_modify but returns
an error on allocation failure.
Sourcepub fn or_default(self) -> Result<&'a mut V, OutOfMemory>where
V: Default,
pub fn or_default(self) -> Result<&'a mut V, OutOfMemory>where
V: Default,
Same as std::collections::btree_map::Entry::or_default but returns
an error on allocation failure.
Auto Trait Implementations§
impl<'a, K, V> Freeze for Entry<'a, K, V>where
K: Freeze,
impl<'a, K, V> RefUnwindSafe for Entry<'a, K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<'a, K, V> Send for Entry<'a, K, V>
impl<'a, K, V> Sync for Entry<'a, K, V>
impl<'a, K, V> Unpin for Entry<'a, K, V>where
K: Unpin,
impl<'a, K, V> !UnwindSafe for Entry<'a, K, 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