pub trait ParseHex { // Required method fn parse_hex(input: &str) -> Result<Self, ParseError> where Self: Sized; }
Parse a value from a hex string.
Parse the value from hex.