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

Method fmt

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

Source from the content-addressed store, hash-verified

251
252impl Debug for Component {
253 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
254 f.debug_struct("Component")
255 .field("guid", &self.guid())
256 .field("display_name", &self.display_name())
257 .field("name", &self.name())
258 .field("components", &self.components().to_vec())
259 .finish()
260 }
261}
262
263impl PartialEq for Component {

Callers

nothing calls this directly

Calls 6

to_vecMethod · 0.80
finishMethod · 0.45
guidMethod · 0.45
display_nameMethod · 0.45
nameMethod · 0.45
componentsMethod · 0.45

Tested by

no test coverage detected