Expand description
Plain, uninstrumented wrappers around [parking_lot
] lock types.
These definitions are used when no particular lock instrumentation Cargo feature is selected.
Structs§
- Mutex
- A plain wrapper around [
parking_lot::Mutex
]. - Mutex
Guard - A guard produced by locking
Mutex
. - Rank
Data - RwLock
- A plain wrapper around [
parking_lot::RwLock
]. - RwLock
Read Guard - A read guard produced by locking
RwLock
as a reader. - RwLock
Write Guard - A write guard produced by locking
RwLock
as a writer.