encode_hex

Function encode_hex 

Source
pub fn encode_hex(input: &impl AsRef<[u8]>) -> String
Expand description

Convert u8 to Hex string

Example:

assert_eq!(encode_hex(&[0, 15, 16, 255]), "000f10ff");