pub trait ArcAny: AsAny + 'static + Send + Sync { // Required method fn into_any(self: Arc<Self>) -> Arc<dyn Any + Send + Sync + 'static>; }