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