pub type ArcMutexGuard<T> = MutexGuard_<T, Arc<Mutex<T>>>;
An guard that provides exclusive access to the data protected by a Arc<Mutex>.
Arc<Mutex>
struct ArcMutexGuard<T> { /* private fields */ }