Trait grin_util::ToHex

source ·
pub trait ToHex {
    // Required method
    fn to_hex(&self) -> String;
}
Expand description

Convert to hex

Required Methods§

source

fn to_hex(&self) -> String

convert to hex

Implementors§

source§

impl<T: AsRef<[u8]>> ToHex for T