Struct cache_2q::VacantEntry [] [src]

pub struct VacantEntry<'a, K: 'a, V: 'a> { /* fields omitted */ }

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

Methods

impl<'a, K: 'a, V: 'a> VacantEntry<'a, K, V>
[src]

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

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

impl<'a, K: 'a + Eq, V: 'a> VacantEntry<'a, K, V>
[src]

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

impl<'a, K: 'a + Debug, V: 'a + Debug> Debug for VacantEntry<'a, K, V>
[src]

Formats the value using the given formatter.