pub trait HexEncodable {
    type Error;

    fn to_hex_string(&self) -> String;
    fn try_from_hex(s: impl AsRef<[u8]>) -> Result<Self, Self::Error>
    where
        Self: Sized
; }

Required Associated Types

Required Methods

Implementors