pub type ArcAnySendSync = Arc<dyn Any + Send + Sync>;Expand description
A type alias for an Arc wrapped Any + Send + Sync trait object.
This represents an atomically reference-counted trait object that can be shared across threads and is safe to send and share.
Aliased Typeยง
pub struct ArcAnySendSync { /* private fields */ }