pub trait Weighter<K, V>: Fn(&K, &V) -> usize + Send + Sync + 'static { }
The weighter for the in-memory cache.
The weighter is used to calculate the weight of the cache entry.