pub fn bytes2hex<B>(prefix: &str, bytes: B) -> Stringwhere B: AsRef<[u8]>,
AsRef<[u8]> to String.
AsRef<[u8]>
String
assert_eq!( array_bytes::bytes2hex("0x", b"Love Jane Forever"), String::from("0x4c6f7665204a616e6520466f7265766572") );