1 2 3 4 5 6 7
use super::Cache; pub(crate) trait CacheUpdate { type Output; fn update(&mut self, &mut Cache) -> Option<Self::Output>; }