pub fn hex_decode(s: &str) -> Option<Vec<u8>>
Decode a 0x-prefixed (or bare) hex string into bytes.
0x
Returns None if the string contains invalid hex characters or has an odd length.
None