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