Trait ethcore_db::Cache
source · [−]pub trait Cache<K, V> {
fn insert(&mut self, k: K, v: V) -> Option<V>;
fn remove(&mut self, k: &K) -> Option<V>;
fn get(&self, k: &K) -> Option<&V>;
}
Expand description
A cache for arbitrary key-value pairs.
Required methods
Insert an entry into the cache and get the old value.
Remove an entry from the cache, getting the old value if it existed.