Trait workflow_core::hex::ToHex
source · pub trait ToHex {
// Required method
fn to_hex(&self) -> String;
}
Required Methods§
Implementations on Foreign Types§
source§impl ToHex for &[u8]
impl ToHex for &[u8]
Little endian format of full slice content (so string lengths are always even).
source§impl ToHex for Vec<u8>
impl ToHex for Vec<u8>
Little endian format of full content (so string lengths are always even).