(&self, f: &mut fmt::Formatter)
| 1778 | |
| 1779 | impl fmt::Debug for State { |
| 1780 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
| 1781 | let ips: Vec<usize> = self.inst_ptrs().collect(); |
| 1782 | f.debug_struct("State") |
| 1783 | .field("flags", &self.flags()) |
| 1784 | .field("insts", &ips) |
| 1785 | .finish() |
| 1786 | } |
| 1787 | } |
| 1788 | |
| 1789 | impl fmt::Debug for Transitions { |
nothing calls this directly
no test coverage detected