Doesn't use impl_u8!() because it would copy unnecessary.
(v: &mut [Self], out: &mut Vec<u8>)
| 308 | impl_unreachable!(u16, pack16, unpack16); |
| 309 | // Doesn't use impl_u8!() because it would copy unnecessary. |
| 310 | fn pack8(v: &mut [Self], out: &mut Vec<u8>) { |
| 311 | pack_bytes(v, out); |
| 312 | } |
| 313 | fn unpack8<'a>( |
| 314 | input: &mut &'a [u8], |
| 315 | length: usize, |
nothing calls this directly
no test coverage detected