trait AnyDebug: Any + Debug { }
This trait is similar to Any, except that it also exposes the underlying type’s Debug implementation.
Any
Debug
(Trying to debug-print dyn Any results in the unhelpful "Any { .. }".)
dyn Any
"Any { .. }"
Equivalent to <dyn Any>::downcast_ref.
<dyn Any>::downcast_ref