pub type BoxAnySend = Box<dyn Any + Send>;Expand description
Type alias for a boxed dynamic type that implements Any and Send.
- Represents a boxed value that can be used for dynamic type checking (
Any) and safely transferred across threads (Send).
Aliased Typeยง
struct BoxAnySend(/* private fields */);