pub trait ToHexString {
// Required method
fn to_hex_string(&self) -> String;
}
Expand description
Trait for converting byte slices into formatted hexadecimal strings.
Required Methods§
Sourcefn to_hex_string(&self) -> String
fn to_hex_string(&self) -> String
Converts to uppercase space-separated hex string (e.g., “F0 7E 00”).