pub trait ToHexString {
    fn to_hex_string(&self) -> String;
}
Expand description

A simple trait allowing something to be converted into a hex string.

Required Methods

Implementations on Foreign Types

A default implementation for byte slices.

Implementors