| 129 | |
| 130 | #[derive(Debug, Serialize, Deserialize)] |
| 131 | pub struct CacheObjMeta<K, D> { |
| 132 | pub key: K, |
| 133 | path: PathBuf, |
| 134 | pub crc: u32, |
| 135 | pub userdata: D, |
| 136 | } |
| 137 | |
| 138 | #[derive(Clone, Debug)] |
| 139 | pub struct CacheObj<K, D> |
nothing calls this directly
no outgoing calls
no test coverage detected