pub trait DebugFields {
// Required method
fn fmt_fields(&self, f: &mut DebugStruct<'_, '_>);
}Expand description
Prints a row keyed, since being keyed is the whole point of the type.
Required Methods§
fn fmt_fields(&self, f: &mut DebugStruct<'_, '_>)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".