type LruData<K, V> = HashMap<K, (Arc<Mutex<LruNode<K>>>, V)>;
Maps the key to the LruNode in queue and the value.
LruNode
struct LruData<K, V> { /* private fields */ }