Expand description
Helper module that adds extra checks when the deadlock_detection
feature is turned on.
Structs§
Type Aliases§
- Mutex
Guard - An RAII implementation of a “scoped lock” of a mutex. When this structure is dropped (falls out of scope), the lock will be unlocked.
- RwLock
Read Guard - An RAII read lock guard returned by
RwLockReadGuard::map
, which can point to a subfield of the protected data. - RwLock
Write Guard - An RAII write lock guard returned by
RwLockWriteGuard::map
, which can point to a subfield of the protected data.