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