pub trait ToUpperHexString: UpperHex {
// Required method
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§
fn to_upper_hex_string(&self) -> String
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".