(&self, f: &mut std::fmt::Formatter<'_>)
| 148 | |
| 149 | impl std::fmt::Debug for DoubleWriteBuffer { |
| 150 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 151 | f.debug_struct("DoubleWriteBuffer") |
| 152 | .field("path", &self.path) |
| 153 | .field("mode", &self.mode) |
| 154 | .field("write_pos", &self.write_pos) |
| 155 | .field("count", &self.count) |
| 156 | .finish() |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | impl DoubleWriteBuffer { |