Skip to main content

VacantEntry

Struct VacantEntry 

Source
pub struct VacantEntry<'a, K: 'a + Eq + Hash, V: 'a, S: 'a + BuildHasher = RandomState> { /* private fields */ }
Expand description

A view into a vacant entry in a Cache. It is part of the Entry enum.

Implementations§

Source§

impl<'a, K: 'a + Eq + Hash, V: 'a, S: 'a + BuildHasher> VacantEntry<'a, K, V, S>

Source

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");
}
Source

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");
}
Source

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>

Source

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§

Source§

impl<'a, K: 'a + Debug + Eq + Hash, V: 'a + Debug, S: 'a + BuildHasher> Debug for VacantEntry<'a, K, V, S>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

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>
where K: Send, V: Send, S: Send,

§

impl<'a, K, V, S> Sync for VacantEntry<'a, K, V, S>
where K: Sync, V: Sync, S: Sync,

§

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.