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.
Required Methods§
Sourcefn parse_hex(input: &str) -> Result<Self, ParseError>where
Self: Sized,
fn parse_hex(input: &str) -> Result<Self, ParseError>where
Self: Sized,
Parse the value from hex.