pub type BoxAnySendSync = Box<dyn Any + Send + Sync>;Expand description
A type alias for a boxed Any + Send + Sync trait object.
This represents a dynamically dispatched trait object that owns its data and is safe to send and share across threads.
Aliased Typeยง
pub struct BoxAnySendSync(/* private fields */);