Skip to main content

DebugIdentify

Trait DebugIdentify 

Source
pub trait DebugIdentify {
    // Required method
    fn debug_identify_type(f: &mut Formatter<'_>) -> Result;

    // Provided method
    fn debug_identify(&self, f: &mut Formatter<'_>) -> Result { ... }
}

Required Methods§

Provided Methods§

Source

fn debug_identify(&self, f: &mut Formatter<'_>) -> Result

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<T> DebugIdentify for Option<T>
where T: DebugIdentify,

Implementors§