pub trait ImplementsDebug {
// Required method
fn implements_debug(&self, lib: &Library) -> bool;
}Expand description
Checks if given type implements Debug trait.
Required Methods§
fn implements_debug(&self, lib: &Library) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".