Trait serialize::hex::ToHexUnstable [-]  [+] [src]

pub trait ToHex: ?Sized {
    fn to_hex(&self) -> String;
}

A trait for converting a value to hexadecimal encoding

Required Methods

fn to_hex(&self) -> String

Converts the value of self to a hex value, returning the owned string.

Implementors