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