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

Method fmt

rust/src/project/file.rs:119–129  ·  view source on GitHub ↗
(&self, f: &mut std::fmt::Formatter<'_>)

Source from the content-addressed store, hash-verified

117
118impl Debug for ProjectFile {
119 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
120 f.debug_struct("ProjectFile")
121 .field("id", &self.id())
122 .field("name", &self.name())
123 .field("description", &self.description())
124 .field("creation_time", &self.creation_time())
125 .field("exists_on_disk", &self.exists_on_disk())
126 .field("project", &self.project())
127 .field("folder", &self.folder())
128 .finish()
129 }
130}
131
132impl ToOwned for ProjectFile {

Callers

nothing calls this directly

Calls 8

creation_timeMethod · 0.80
finishMethod · 0.45
idMethod · 0.45
nameMethod · 0.45
descriptionMethod · 0.45
exists_on_diskMethod · 0.45
projectMethod · 0.45
folderMethod · 0.45

Tested by

no test coverage detected