(&self, f: &mut std::fmt::Formatter<'_>)
| 125 | |
| 126 | impl std::fmt::Debug for ChangeStore { |
| 127 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 128 | let cache_capacity = self.cache.read().map(|c| c.capacity).unwrap_or(0); |
| 129 | f.debug_struct("ChangeStore") |
| 130 | .field("changes_dir", &self.changes_dir) |
| 131 | .field("cache_capacity", &cache_capacity) |
| 132 | .finish() |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | fn copy_content_from_change( |