Function safe_transmute::guarded_transmute [] [src]

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

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

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::<u32>(&[0x00, 0x00, 0x00, 0x01]).unwrap(), 0x01000000);