pub fn pod_read_unaligned<T: AnyBitPattern>(bytes: &[u8]) -> T
Expand description

Reads the slice into a T value.

Unlike from_bytes, the slice doesn’t need to respect alignment of T, only sizes must match.

§Panics

  • This is like try_pod_read_unaligned but will panic on failure.