(&self, f: &mut fmt::Formatter)
| 241 | F: FunctionForm, |
| 242 | { |
| 243 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
| 244 | f.debug_struct("LowLevelILFunction") |
| 245 | .field("arch", &self.arch()) |
| 246 | .field("instruction_count", &self.instruction_count()) |
| 247 | .field("expression_count", &self.expression_count()) |
| 248 | .finish() |
| 249 | } |
| 250 | } |
| 251 | |
| 252 | unsafe impl<A: Architecture, M: FunctionMutability, F: FunctionForm> Send |
nothing calls this directly
no test coverage detected