pub fn read_array<const N: usize>(
buf: &[u8],
) -> Result<([u8; N], &[u8]), Incomplete>Expand description
Read a fixed-size N-byte array (e.g. a 17-byte VIN, a 6-byte EID).
ยงErrors
Incomplete if fewer than N bytes remain.
pub fn read_array<const N: usize>(
buf: &[u8],
) -> Result<([u8; N], &[u8]), Incomplete>Read a fixed-size N-byte array (e.g. a 17-byte VIN, a 6-byte EID).
Incomplete if fewer than N bytes remain.