Trait amplify::hex::ToHex[][src]

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

Trait for objects that can be serialized as hex strings

Required methods

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

Expand description

Hex representation of the object

Implementations on Foreign Types

impl ToHex for [u8][src]

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

Implementors

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

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

Outputs the hash in hexadecimal form