Function safe_transmute::transmute_one_pedantic[][src]

pub fn transmute_one_pedantic<T: TriviallyTransmutable>(
    bytes: &[u8]
) -> Result<T, Error<'_, u8, T>>

Transmute a byte slice into a single instance of a trivially transmutable type.

The byte slice must have exactly enough bytes to fill a single instance of a type.

Errors

An error is returned in one of the following situations:

Examples

// Little-endian
assert_eq!(transmute_one_pedantic::<u16>(&[0x0F, 0x0E])?, 0x0E0F);