pub type BoxAny = Box<dyn Any>;
A type alias for a boxed Any trait object.
Any
This represents a dynamically dispatched trait object that owns its data.
pub struct BoxAny(/* private fields */);