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