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