Trait hex_conservative::parse::FromHex
source · pub trait FromHex: Sized {
type Error: Sized + Debug + Display;
// Required method
fn from_hex(s: &str) -> Result<Self, Self::Error>;
}
Expand description
Trait for objects that can be deserialized from hex strings.
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.