Function safe_transmute::bool::transmute_bool_vec_permissive[][src]

pub fn transmute_bool_vec_permissive(
    bytes: Vec<u8>
) -> Result<Vec<bool>, Error<'static, u8, bool>>

Trasform a byte vector into a vector of bool.

The vector’s allocated byte buffer will be reused when possible.

Examples

assert_eq!(transmute_bool_vec_permissive(vec![0x00, 0x01, 0x00, 0x01])?,
           vec![false, true, false, true]);
assert_eq!(transmute_bool_vec_permissive(vec![0x01, 0x00, 0x00, 0x00, 0x01])?,
           vec![true, false, false, false, true]);
assert_eq!(transmute_bool_vec_permissive(vec![]), Ok(vec![]));