Trait extra::hex::ToHex

pub trait ToHex {
    fn to_hex(&self) -> ~str;
}

A trait for converting a value to hexadecimal encoding

Required Methods

fn to_hex(&self) -> ~str

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

Implementors