Trait HexEncodeExt

Source
pub trait HexEncodeExt {
    // Required method
    fn hex_lower(&self) -> String;

    // Provided method
    fn hex_upper(&self) -> String { ... }
}

Required Methods§

Source

fn hex_lower(&self) -> String

Provided Methods§

Source

fn hex_upper(&self) -> String

Implementors§

Source§

impl<T> HexEncodeExt for T
where T: AsRef<[u8]>,