1 2 3 4 5 6 7 8 9 10
use super::Cache; /// Memory cache implementation /// /// Since the compilation will keep all the data from the last compilation, /// the memory cache does nothing #[derive(Debug)] pub struct MemoryCache; impl Cache for MemoryCache {}