Trait ToHex

Source
pub trait ToHex {
    // Required method
    fn to_hex(&self) -> String;
}

Required Methods§

Source

fn to_hex(&self) -> String

Implementations on Foreign Types§

Source§

impl ToHex for &[u8]

Little endian format of full slice content (so string lengths are always even).

Source§

fn to_hex(&self) -> String

Source§

impl ToHex for Vec<u8>

Little endian format of full content (so string lengths are always even).

Source§

fn to_hex(&self) -> String

Implementors§