[][src]Function safe_transmute::guarded_transmute_pedantic

pub unsafe fn guarded_transmute_pedantic<T: Copy>(
    bytes: &[u8]
) -> Result<T, Error>

Transmute a byte slice into a single instance of a Copyable type.

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

Examples

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