(&self, f: &mut std::fmt::Formatter<'_>)
| 16 | |
| 17 | impl std::fmt::Debug for TraceEntry { |
| 18 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 19 | f.write_fmt(format_args!( |
| 20 | "pc={:#0x}, sp={:#0x}, icount={}, fuzz_offset={}, last_read={:#0x}={:#0x}", |
| 21 | self.pc, self.sp, self.icount, self.fuzz_offset, self.last_read, self.last_value, |
| 22 | )) |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | pub trait IoTracer { |
nothing calls this directly
no outgoing calls
no test coverage detected