Trait mina_crypto::hex::HexEncodable
source · [−]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
source