1
2
3
4
5
6
7
8
use crate::key::CacheKey;

pub trait CacheMode<K>
where
    K: CacheKey,
{
    fn can_cache(key: &K) -> bool;
}