MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / fmt

Method fmt

rust/src/repository.rs:76–83  ·  view source on GitHub ↗
(&self, f: &mut std::fmt::Formatter<'_>)

Source from the content-addressed store, hash-verified

74
75impl Debug for Repository {
76 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
77 f.debug_struct("Repository")
78 .field("url", &self.url())
79 .field("path", &self.path())
80 .field("full_path", &self.full_path())
81 .field("plugins", &self.plugins().to_vec())
82 .finish()
83 }
84}
85
86impl ToOwned for Repository {

Callers

nothing calls this directly

Calls 6

to_vecMethod · 0.80
finishMethod · 0.45
urlMethod · 0.45
pathMethod · 0.45
full_pathMethod · 0.45
pluginsMethod · 0.45

Tested by

no test coverage detected