Rust - Concurrency - Mutex


Mutexes allows thread safe access to memory. They should be pared with Arc<T> (atomic Rc<T>) to be shared amount threads.