(&self, f: &mut fmt::Formatter<'_>)
| 356 | V: fmt::Debug, |
| 357 | { |
| 358 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 359 | f.debug_map() |
| 360 | .entries(self.iter().map(|(k, v)| (k, v))) |
| 361 | .finish() |
| 362 | } |
| 363 | } |
| 364 | |
| 365 | /// Entry for an existing key-value pair in an [`SparseMap`] |