Function safe_transmute::transmute_many_pedantic_mut[][src]

pub fn transmute_many_pedantic_mut<T: TriviallyTransmutable>(
    bytes: &mut [u8]
) -> Result<&mut [T], Error<'_, u8, T>>

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!(transmute_many_pedantic_mut::<u16>(&mut [0x0F, 0x0E, 0x0A, 0x0B])?,
           &mut [0x0E0F, 0x0B0A]);