| 29 | |
| 30 | #[derive(Debug)] |
| 31 | pub struct CacheMeta { |
| 32 | // Clippy will whinge about variant sizes here. |
| 33 | pub cache_key: PathBuf, |
| 34 | // Add the time this was added |
| 35 | pub etime: OffsetDateTime, |
| 36 | pub action: Action, |
| 37 | } |
| 38 | |
| 39 | #[derive(Debug)] |
| 40 | pub enum Action { |
nothing calls this directly
no outgoing calls
no test coverage detected