()
| 20 | impl<BS: BlockSizes> Default for ReadBuffer<BS> { |
| 21 | #[inline] |
| 22 | fn default() -> Self { |
| 23 | let buffer = Default::default(); |
| 24 | let mut res = Self { buffer }; |
| 25 | // SAFETY: `BS::USIZE` satisfies the `set_pos_unchecked` safety contract |
| 26 | unsafe { res.set_pos_unchecked(BS::USIZE) }; |
| 27 | res |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | impl<BS: BlockSizes> Clone for ReadBuffer<BS> { |
nothing calls this directly
no test coverage detected