pub trait AnyDebug: Any + Debug {
    fn as_any_ref(&self) -> &dyn Any;
}
Expand description

A trait that combines the Debug and Any traits.

Required Methods§

Returns a reference to the underlying type as Any.

Implementors§