pub struct VacantEntry<'a, K: 'a + Eq + Hash, V: 'a, S: 'a + BuildHasher = RandomState> { /* private fields */ }Implementations§
Source§impl<'a, K: 'a + Eq + Hash, V: 'a, S: 'a + BuildHasher> VacantEntry<'a, K, V, S>
impl<'a, K: 'a + Eq + Hash, V: 'a, S: 'a + BuildHasher> VacantEntry<'a, K, V, S>
Sourcepub fn key(&self) -> &K
pub fn key(&self) -> &K
Gets a reference to the key that would be used when inserting a value
through the VacantEntry.
§Examples
use cache_2q::{Cache, Entry};
let mut cache: Cache<&str, u32> = Cache::new(8);
if let Entry::Vacant(v) = cache.entry("poneyland") {
assert_eq!(v.key(), &"poneyland");
} else {
panic!("Entry should be vacant");
}Sourcepub fn into_key(self) -> K
pub fn into_key(self) -> K
Take ownership of the key.
§Examples
use cache_2q::{Cache, Entry};
let mut cache: Cache<String, u32> = Cache::new(8);
if let Entry::Vacant(v) = cache.entry("poneyland".into()) {
assert_eq!(v.into_key(), "poneyland".to_string());
} else {
panic!("Entry should be vacant");
}Sourcepub fn is_remembered(&self) -> bool
pub fn is_remembered(&self) -> bool
If this vacant entry is remembered
Keys are remembered after they are evicted from the cache. If this entry is remembered,
if inserted, it will be insert to a frequent list, instead of the usual recent list
§Examples
use cache_2q::{Cache, Entry};
let mut cache: Cache<&str, u32> = Cache::new(1);
if let Entry::Vacant(v) = cache.entry("poneyland") {
assert!(!v.is_remembered());
} else {
panic!("Entry should be vacant");
}
cache.insert("poneyland", 0);
cache.insert("other", 1); // Force poneyland out of the cache
if let Entry::Vacant(v) = cache.entry("poneyland") {
assert!(v.is_remembered());
v.insert(0);
} else {
panic!("Entry should be vacant");
}Source§impl<'a, K: 'a + Eq + Hash, V: 'a, S: 'a + BuildHasher> VacantEntry<'a, K, V, S>
impl<'a, K: 'a + Eq + Hash, V: 'a, S: 'a + BuildHasher> VacantEntry<'a, K, V, S>
Sourcepub fn insert(self, value: V) -> &'a mut V
pub fn insert(self, value: V) -> &'a mut V
Sets the value of the entry with the VacantEntry’s key, and returns a mutable reference to it.
§Examples
use cache_2q::{Cache, Entry};
let mut cache: Cache<&str, u32> = Cache::new(8);
if let Entry::Vacant(o) = cache.entry("poneyland") {
o.insert(37);
} else {
panic!("Entry should be vacant");
}
assert_eq!(*cache.get("poneyland").unwrap(), 37);Trait Implementations§
Auto Trait Implementations§
impl<'a, K, V, S> Freeze for VacantEntry<'a, K, V, S>where
K: Freeze,
impl<'a, K, V, S> RefUnwindSafe for VacantEntry<'a, K, V, S>
impl<'a, K, V, S> Send for VacantEntry<'a, K, V, S>
impl<'a, K, V, S> Sync for VacantEntry<'a, K, V, S>
impl<'a, K, V, S> Unpin for VacantEntry<'a, K, V, S>where
K: Unpin,
impl<'a, K, V, S> UnsafeUnpin for VacantEntry<'a, K, V, S>where
K: UnsafeUnpin,
impl<'a, K, V, S = RandomState> !UnwindSafe for VacantEntry<'a, K, V, S>
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