Function safe_transmute::transmute_many_permissive_mut
source · pub fn transmute_many_permissive_mut<T: TriviallyTransmutable>(
bytes: &mut [u8]
) -> Result<&mut [T], Error<'_, u8, T>>
Expand description
Transmute a byte slice into a sequence of values of the given type.
§Errors
An error is returned in one of the following situations:
- The data does not have a memory alignment compatible with
T
. You will have to make a copy anyway, or modify how the data was originally made.
§Examples
assert_eq!(transmute_many_permissive_mut::<u16>(&mut [0x00])?, [].as_mut());