usesuper::CacheRecord;/// A trait for types that can be converted into a cache record. Any given
/// type that implements this trait can be inserted into a cache.
pubtraitIntoCache{/// Consume the type, producing a [`CacheRecord`]
fninto_cache(self)-> CacheRecord;}