pub trait AppendHexDecode: FromHexDecode {
    fn append_hex_decode(src: &[u8], dst: &mut Self) -> Result<(), Error>;
}
Expand description

Types that can append bytes decoded from a hex string.

Required Methods§

Decodes a hex string to bytes case-insensitively and appends to the self type.

Errors

This function returns Err if the content of src is invalid.

Implementations on Foreign Types§

Implementors§