[][src]Function safe_transmute::safe_transmute_many_pedantic

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

Transmute a byte slice into a sequence of values of the given type.

Errors

An error is returned in one of the following situations:

Examples

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