[][src]Function safe_transmute::guarded_transmute_many_pedantic

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

View a byte slice as a slice of an arbitrary type.

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

Examples

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