pub trait WriteHex {
// Required method
fn write_hex<W: Write>(&self, writer: W) -> Result;
}
Expand description
Encode a value as a hex string.
Implementors of this trait should not write the 0x
prefix.
Required Methods§
Object Safety§
This trait is not object safe.