pub trait AsAny { // Required method fn as_any(&self) -> &(dyn Any + 'static); }
A trait that allows an object to be downcast to a reference of type Any.
Any
Returns a reference to the current object as a trait object.