Function safe_transmute::bool::transmute_bool_vec_pedantic[][src]

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

Transform a byte vector into a vector of bool.

The vector’s allocated byte buffer will be reused when possible, and should not be empty.

Examples

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

assert!(transmute_bool_vec_pedantic(vec![]).is_err());

assert!(transmute_bool_vec_pedantic(vec![0x04, 0x00, 0xED]).is_err());