Trait freqache::Entry[][src]

pub trait Entry: Clone {
    fn weight(&self) -> u64;
}
Expand description

An LFUCache entry

Required methods

The weight of this item in the cache. This value must be stable over the lifetime of the item.

Implementors