Trait workflow_core::hex::ToHex

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

Required Methods§

source

fn to_hex(&self) -> String

Implementations on Foreign Types§

source§

impl ToHex for &[u8]

Little endian format of full slice content (so string lengths are always even).

source§

fn to_hex(&self) -> String

source§

impl ToHex for Vec<u8>

Little endian format of full content (so string lengths are always even).

source§

fn to_hex(&self) -> String

Implementors§