pub trait DebugAttributes {
const NAME: &'static str;
// Required method
fn _dbg(&self, builder: &mut DebugStruct<'_, '_>);
}
Required Associated Constants§
Required Methods§
fn _dbg(&self, builder: &mut DebugStruct<'_, '_>)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.