1// Return u32 from a byte slice 2#[must_use] 3pub fn u32_from_slice(data: &[u8]) -> u32 { 4 u32::from_le_bytes(*data.first_chunk::<4>().unwrap()) 5}