Module vanilla

Source
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].
MutexGuard
A guard produced by locking Mutex.
RankData
RwLock
A plain wrapper around [parking_lot::RwLock].
RwLockReadGuard
A read guard produced by locking RwLock as a reader.
RwLockWriteGuard
A write guard produced by locking RwLock as a writer.