[][src]Function safe_transmute::safe_transmute_many

pub fn safe_transmute_many<T: PodTransmutable, G: Guard>(
    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::<u16, SingleManyGuard>(&[0x00, 0x01, 0x00, 0x02])?,
           &[0x0100, 0x0200]);