pub fn guarded_transmute_pod<T: PodTransmutable>(
    bytes: &[u8]
) -> Result<T, Error>
Expand description

Transmute a byte slice into a single instance of a POD.

The byte slice must have at least enough bytes to fill a single instance of a type, extraneous data is ignored.

Examples

// Little-endian
assert_eq!(guarded_transmute_pod::<u32>(&[0x00, 0x00, 0x00, 0x01])?, 0x01000000);