MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / fmt

Method fmt

atomic-repository/src/repository/mod.rs:210–219  ·  view source on GitHub ↗
(&self, f: &mut std::fmt::Formatter<'_>)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

finishMethod · 0.45

Tested by

no test coverage detected