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