1 2 3 4 5 6 7 8
use crate::cache::persistent::PersistentCacheOptions; #[derive(Debug, Clone)] pub enum CacheOptions { Disabled, Memory, Persistent(PersistentCacheOptions), }