(&self, f: &mut fmt::Formatter<'_>)
| 220 | V: SparseMapValue<K> + fmt::Debug, |
| 221 | { |
| 222 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 223 | f.debug_map() |
| 224 | .entries(self.values().map(|v| (v.key(), v))) |
| 225 | .finish() |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | /// Iterating over the elements of a set. |