pub trait DebugExt {
// Required method
fn debug(&self) -> String;
}Expand description
Convenience function to create a string containing the debug representation of an object that
implements Debug
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".