pub(crate) fn parse_u8_array<const N: usize>( data: &[u8], ) -> Result<([u8; N], &[u8]), ParseError>
Parse an array of u8 from the given data.
u8