(&self, cache_key: &str)
| 163 | } |
| 164 | |
| 165 | fn measurement_cache_path(&self, cache_key: &str) -> PathBuf { |
| 166 | self.measurement_cache_dir() |
| 167 | .join(format!("{cache_key}.json")) |
| 168 | } |
| 169 | |
| 170 | fn vm_config_cache_key(vm_config: &VmConfig) -> Result<String> { |
| 171 | let serialized = serde_json::to_vec(vm_config) |
no test coverage detected