(&self, f: &mut fmt::Formatter<'_>)
| 569 | |
| 570 | impl fmt::Debug for CodeUnits { |
| 571 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 572 | // SAFETY: Debug formatting doesn't race with replace_op |
| 573 | let inner = unsafe { &*self.units.get() }; |
| 574 | f.debug_tuple("CodeUnits").field(inner).finish() |
| 575 | } |
| 576 | } |
| 577 | |
| 578 | impl TryFrom<&[u8]> for CodeUnits { |
nothing calls this directly
no test coverage detected