(&self, f: &mut std::fmt::Formatter<'_>)
| 71 | |
| 72 | impl Debug for BinaryWriter { |
| 73 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 74 | f.debug_struct("BinaryWriter") |
| 75 | .field("offset", &self.offset()) |
| 76 | .field("endianness", &self.endianness()) |
| 77 | .finish() |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | impl Seek for BinaryWriter { |
nothing calls this directly
no test coverage detected