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