pub fn read_u32_into(src: &[u8], dst: &mut [u32])
Expand description
Fills dst: &mut [u32]
from src
Reads use Little-Endian byte order, allowing portable reproduction of dst
from a byte slice.
ยงPanics
If src
has insufficient length (if src.len() < 4*dst.len()
).