Function safe_transmute::transmute_many_permissive[][src]

pub fn transmute_many_permissive<T: TriviallyTransmutable>(
    bytes: &[u8]
) -> Result<&[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

assert_eq!(transmute_many_permissive::<u16>(&[0x00])?, [].as_ref());