Trait ToHexString

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

Trait for converting byte slices into formatted hexadecimal strings.

Required Methods§

Source

fn to_hex_string(&self) -> String

Converts to uppercase space-separated hex string (e.g., “F0 7E 00”).

Implementations on Foreign Types§

Source§

impl ToHexString for &[u8]

Source§

impl ToHexString for &[U7]

Source§

impl ToHexString for Vec<u8>

Implementors§