(&self, f: &mut std::fmt::Formatter<'_>)
| 210 | |
| 211 | impl std::fmt::Debug for Repository { |
| 212 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 213 | f.debug_struct("Repository") |
| 214 | .field("root", &self.root) |
| 215 | .field("dot_dir", &self.dot_dir) |
| 216 | .field("current_view", &self.current_view) |
| 217 | .field("pristine", &"<Pristine>") |
| 218 | .field("change_store", &self.change_store) |
| 219 | .field("is_sandbox", &self.is_sandbox) |
| 220 | .finish() |
| 221 | } |
| 222 | } |
| 223 | |
| 224 | // ── Construction, accessors, internal helpers ──────────────────────────── |