//! [`CachedValue`] — a cache entry tagged with its insertion instant.
use ;
/// A value stored in the L1 cache together with the [`Instant`] it was inserted.
///
/// The insertion time drives TTL expiry: an entry older than the cache's
/// configured TTL is treated as a miss, forcing a reload from the wrapped store.