pub trait AsAny: Send + Sync { // Required method fn as_any(&self) -> &dyn Any; }
Helper trait for downcasting trait objects to concrete types.