pub trait FromHexPrefixed: Sized {
// Required method
fn from_hex_prefixed(hex: impl AsRef<str>) -> Result<Self, Error>;
}Expand description
Tries to decode an hexadecimal encoded string with a 0x prefix.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.