| 8 | |
| 9 | #[derive(Debug, Clone, PartialEq, Eq)] |
| 10 | pub struct MemCacheObj { |
| 11 | pub etag: String, |
| 12 | // Time to refresh |
| 13 | pub refresh: Instant, |
| 14 | pub headers: Vec<(String, String)>, |
| 15 | pub content: Option<tide::http::Mime>, |
| 16 | pub blob: Vec<u8>, |
| 17 | } |
| 18 | |
| 19 | #[derive(Debug, Clone)] |
| 20 | pub struct MemCacheMeta { |
nothing calls this directly
no outgoing calls
no test coverage detected