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§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".