pub trait ToHex {
    fn to_hex(&self) -> String;
}
Expand description

Trait for objects that can be serialized as hex strings

Required Methods

Hex representation of the object

Implementations on Foreign Types

Implementors