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

Method fmt

rust/src/high_level_il/function.rs:247–255  ·  view source on GitHub ↗
(&self, f: &mut Formatter<'_>)

Source from the content-addressed store, hash-verified

245
246impl Debug for HighLevelILFunction {
247 fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
248 f.debug_struct("HighLevelILFunction")
249 .field("arch", &self.function().arch())
250 .field("instruction_count", &self.instruction_count())
251 .field("expression_count", &self.expression_count())
252 .field("root", &self.root())
253 .field("root", &self.root())
254 .finish()
255 }
256}
257
258unsafe impl Send for HighLevelILFunction {}

Callers

nothing calls this directly

Calls 6

finishMethod · 0.45
archMethod · 0.45
functionMethod · 0.45
instruction_countMethod · 0.45
expression_countMethod · 0.45
rootMethod · 0.45

Tested by

no test coverage detected