Skip to main content

DebugFields

Trait DebugFields 

Source
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§

Source

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".

Implementors§

Source§

impl DebugFields for RowNil

Source§

impl<K: Named, V: Debug, Tail: DebugFields> DebugFields for RowCons<K, V, Tail>