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