(&self, f: &mut Formatter)
| 610 | |
| 611 | impl Debug for MediumLevelILFunction { |
| 612 | fn fmt(&self, f: &mut Formatter) -> std::fmt::Result { |
| 613 | f.debug_struct("MediumLevelILFunction") |
| 614 | .field("arch", &self.function().arch()) |
| 615 | .field("instruction_count", &self.instruction_count()) |
| 616 | .finish() |
| 617 | } |
| 618 | } |
| 619 | |
| 620 | unsafe impl Send for MediumLevelILFunction {} |
nothing calls this directly
no test coverage detected