Trait HexEncode

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

Required Methods§

Source

fn to_hex(&self) -> String

Implementors§

Source§

impl<T: ToHex> HexEncode for T