pub trait HexString {
// Required method
fn as_hex_string(&self) -> String;
}Expand description
Creates a string of hexadecimal characters.
Required Methods§
Sourcefn as_hex_string(&self) -> String
fn as_hex_string(&self) -> String
Turns self into a string of hexadecimal characters.