Trait ToHexString

Source
pub trait ToHexString {
    // Required method
    fn to_hex_string(&self) -> String;
}
Expand description

Trait to add hex encoding functionality to byte arrays and vectors

Required Methods§

Implementations on Foreign Types§

Source§

impl ToHexString for Vec<u8>

Source§

impl ToHexString for [u8]

Source§

impl<const N: usize> ToHexString for [u8; N]

Implementors§