Skip to main content

DebugStructExt

Trait DebugStructExt 

Source
pub trait DebugStructExt<'a, 'b> {
    // Required method
    fn maybe_field<T: Debug>(
        &mut self,
        name: &str,
        value: &Option<T>,
    ) -> &mut DebugStruct<'a, 'b>;
}

Required Methods§

Source

fn maybe_field<T: Debug>( &mut self, name: &str, value: &Option<T>, ) -> &mut DebugStruct<'a, 'b>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<'a, 'b> DebugStructExt<'a, 'b> for DebugStruct<'a, 'b>

Source§

fn maybe_field<T: Debug>( &mut self, name: &str, value: &Option<T>, ) -> &mut DebugStruct<'a, 'b>

Implementors§