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§
fn debug_identify_type(f: &mut Formatter<'_>) -> Result
Provided Methods§
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".