pub fn u8_to_hex(bytes: &[u8]) -> String
Convert a &[u8] byte array to a lower-case, no-sepreator hex string.
&[u8]
assert_eq!(&u8_to_hex(b"\xaa\xbb"), "aabb");