pub trait OnEvict<K, V> {
    fn evict(&self, k: &K, v: &V);
}

Required Methods

Implementors