(&self, f: &mut std::fmt::Formatter<'_>)
| 90 | |
| 91 | impl Debug for BinaryReader { |
| 92 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 93 | f.debug_struct("BinaryReader") |
| 94 | .field("offset", &self.offset()) |
| 95 | .field("virtual_base", &self.virtual_base()) |
| 96 | .field("endianness", &self.endianness()) |
| 97 | .finish() |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | impl Seek for BinaryReader { |
nothing calls this directly
no test coverage detected