Module rw_lock_impl

Source

Structs§

RwLock
Provides interior mutability.

Type Aliases§

RwLockReadGuard
The lock you get from RwLock::read. An RAII read lock guard returned by RwLockReadGuard::map, which can point to a subfield of the protected data.
RwLockWriteGuard
The lock you get from RwLock::write. An RAII write lock guard returned by RwLockWriteGuard::map, which can point to a subfield of the protected data.