//! Provides a thread-safe, asynchronous (futures aware) cache implementation.
//!//! To use this module, enable a crate feature called "future".
modbuilder;modcache;modvalue_initializer;pubusebuilder::CacheBuilder;pubusecache::Cache;/// Provides extra methods that will be useful for testing.
pubtraitConcurrentCacheExt<K, V> {/// Performs any pending maintenance operations needed by the cache.
fnsync(&self);}