pub type RcOrArc<T> = Arc<T>;
A reference counted pointer: either Rc or Arc, depending on the feature flags.
Rc
Arc
Arc is used when thread-safe feature is activated.
thread-safe
pub struct RcOrArc<T> { /* private fields */ }