(&mut self, v: &u8)
| 9 | impl<const N: usize> Encoder<u8> for VariantEncoder<N> { |
| 10 | #[inline(always)] |
| 11 | fn encode(&mut self, v: &u8) { |
| 12 | unsafe { self.0.push_unchecked(*v) }; |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | impl<const N: usize> Buffer for VariantEncoder<N> { |
nothing calls this directly
no test coverage detected