pub trait HexConf {
// Provided methods
fn compact() -> bool { ... }
fn withpfx() -> bool { ... }
fn withcap() -> bool { ... }
}
Expand description
Trait for supplying configuration to SerHex
.
This trait takes no self
parameters, as it is
intended to be applied unit structs. All default
implementation are set to false
.
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.