pub type Mutex<T> = Mutex<T, RawMutex>;Expand description
A mutual exclusion primitive useful for protecting shared data, which cannot deadlock.
By default, this uses parking_lot as a backend.
Aliased Type§
struct Mutex<T> { /* private fields */ }