pub fn encode(data: impl AsRef<[u8]>) -> StringExpand description
Encodes a byte slice as a lowercase hexadecimal string.
ยงPanics
Never panics in practice: the output buffer is built from ASCII hex pairs in
ENCODE_PAIR, so String::from_utf8 always succeeds.