[][src]Trait bitcoin_hashes::hex::ToHex

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

Trait for objects that can be serialized as hex strings

Required methods

fn to_hex(&self) -> String

Hex representation of the object

Loading content...

Implementations on Foreign Types

impl ToHex for [u8][src]

Loading content...

Implementors

impl<T: LowerHex> ToHex for T[src]

fn to_hex(&self) -> String[src]

Outputs the hash in hexadecimal form

Loading content...