pub trait EvictorDb<T> {
// Required methods
fn get_latest_assigned_key(&self) -> Result<Option<RegistryKey>>;
fn set_latest_assigned_key(&mut self, key: RegistryKey) -> Result<()>;
}
Expand description
Evictor registry to keep track of the latest used key for the type T
.