Arc<T> (Rust)

Arc<T> is an atomically reference-counted smart pointer for sharing ownership across threads. It is the thread-safe sibling of Rc, using atomic operations so…