Write `bytes: &[u8; N]` starting at the current offset and advance the offset by `N`.
(&mut self, bytes: &[u8; N])
| 434 | /// Write `bytes: &[u8; N]` starting at the current offset |
| 435 | /// and advance the offset by `N`. |
| 436 | fn write_bytes<const N: usize>(&mut self, bytes: &[u8; N]) { |
| 437 | self.fixed_buf[range_move(0..N, self.curr_offset)].copy_from_slice(bytes); |
| 438 | self.curr_offset += N; |
| 439 | } |
| 440 | |
| 441 | /// Write a `u8` to the fixed buffer and advance the `curr_offset`. |
| 442 | fn write_u8(&mut self, val: u8) { |
no test coverage detected