pub trait ToHexPrefixed {
    fn to_hex_prefixed(self) -> String;
}
Expand description

Encodes data into an hexadecimal encoded string with a 0x prefix.

Required methods

Encodes data into an hexadecimal encoded string with a 0x prefix.

Implementations on Foreign Types

Implementors