pub trait AnyDebug: Any + Debug { }Expand description
This trait is similar to Any, except that it also exposes the underlying
type’s Debug implementation.
(Trying to debug-print dyn Any results in the unhelpful "Any { .. }".)
Implementations§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".