Expand description
Helper module that adds extra checks when the deadlock_detection
feature is turned on.
Structsยง
- Mutex
- Provides interior mutability.
- Mutex
Guard - The lock you get from
Mutex
. - RwLock
- Provides interior mutability.
- RwLock
Read Guard - The lock you get from
RwLock::read
. - RwLock
Write Guard - The lock you get from
RwLock::write
.