pub type LruCache<K, V> = Mutex<LruCache<K, LruItem<V>, RandomState>>;
struct LruCache<K, V> { /* private fields */ }