(&self, f: &mut Formatter<'_>)
| 271 | |
| 272 | impl Debug for CachedFileMetadataEntry { |
| 273 | fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { |
| 274 | f.debug_struct("CachedFileMetadataEntry") |
| 275 | .field("meta", &self.meta) |
| 276 | .field("memory_size", &self.file_metadata.memory_size()) |
| 277 | .finish() |
| 278 | } |
| 279 | } |
| 280 | |
| 281 | /// Cache for file-embedded metadata. |
nothing calls this directly
no test coverage detected