pub trait FromHexEncode: Sized {
    fn from_hex_encode(data: &[u8], case: AsciiCase) -> Self;
}
Expand description

Types that can represent a hex string.

Required Methods§

Encodes bytes to a hex string and returns the self type.

Implementations on Foreign Types§

Implementors§