pub trait AsHex {
type Item;
// Required methods
fn as_hex<'a>(&'a self) -> Hex<'a, Self::Item>;
fn plain_hex<'a>(&'a self, with_spaces: bool) -> PlainHex<'a, Self::Item>;
}Required Associated Types§
Required Methods§
fn as_hex<'a>(&'a self) -> Hex<'a, Self::Item>
fn plain_hex<'a>(&'a self, with_spaces: bool) -> PlainHex<'a, Self::Item>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".