pub trait ToUpperHexString: UpperHex {
    fn to_upper_hex_string(&self) -> String;
}
Expand description

A trait that provides an ergonomic way to create the string specified by an UpperHex implementation.

Required Methods

Implementors