pub trait FromHexString {
// Required method
fn from_hex_string(&self) -> Result<Vec<u8>, FromHexError>;
}Expand description
Trait to add hex decoding functionality to strings
pub trait FromHexString {
// Required method
fn from_hex_string(&self) -> Result<Vec<u8>, FromHexError>;
}Trait to add hex decoding functionality to strings