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
fn encode_hex<T: FromIterator<char>>(&self) -> T
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
fn encode_hex_upper<T: FromIterator<char>>(&self) -> T
Encode the hex strict representing self
into the result. Upper case
letters are used (e.g. F9B4CA
)