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