ayun_cache/traits/
mod.rs

1
2
3
4
5
pub use driver::CacheDriver;

mod driver;

pub type CacheResult<T> = crate::Result<T, crate::Error>;