pub trait AnySendSync:
Any
+ Send
+ Sync { }Expand description
Represents a type that can be dynamically downcast and is safe to both send and share across threads.
This trait combines the capabilities of Any, Send, and Sync, ensuring that types implementing
it can be safely sent and shared across thread boundaries.