(&self, f: &mut fmt::Formatter<'_>)
| 11 | |
| 12 | impl<BS: BlockSizes> fmt::Debug for ReadBuffer<BS> { |
| 13 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 14 | f.debug_struct("ReadBuffer") |
| 15 | .field("remaining_data", &self.remaining()) |
| 16 | .finish_non_exhaustive() |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | impl<BS: BlockSizes> Default for ReadBuffer<BS> { |