Trait hex::ToHex [−][src]
pub trait ToHex {
    fn encode_hex<T: FromIterator<char>>(&self) -> T;
    fn encode_hex_upper<T: FromIterator<char>>(&self) -> T;
}Expand description
Required methods
fn encode_hex<T: FromIterator<char>>(&self) -> T
[src]
fn encode_hex<T: FromIterator<char>>(&self) -> T
[src]Encode the hex strict representing self into the result. Lower case
letters are used (e.g. f9b4ca)
fn encode_hex_upper<T: FromIterator<char>>(&self) -> T
[src]
fn encode_hex_upper<T: FromIterator<char>>(&self) -> T
[src]Encode the hex strict representing self into the result. Upper case
letters are used (e.g. F9B4CA)