(&self, f: &mut Formatter<'_>)
| 245 | |
| 246 | impl 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 | |
| 258 | unsafe impl Send for HighLevelILFunction {} |
nothing calls this directly
no test coverage detected