pub unsafe fn cache_get<K, V>( cache: *mut LazyRUMCache<K, V>, key: &K, ) -> Option<V>where K: Hash + Eq + Clone + Send + Sync + 'static, V: Clone + Send + Sync + 'static,