(&self, f: &mut std::fmt::Formatter<'_>)
| 197 | |
| 198 | impl std::fmt::Debug for Repository { |
| 199 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 200 | f.debug_struct("Repository") |
| 201 | .field("root", &self.root) |
| 202 | .field("dot_dir", &self.dot_dir) |
| 203 | .field("current_view", &self.current_view) |
| 204 | .field("pristine", &"<Pristine>") |
| 205 | .field("change_store", &self.change_store) |
| 206 | .finish() |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | // ── Construction, accessors, internal helpers ──────────────────────────── |