Module rwlock

Source
Expand description

An asynchronous readers-writer lock.

See the documentation for the RwLock type for details.

Structsยง

OwnedRwLockReadGuard
Owned RAII structure used to release the shared read access of a RwLock when dropped.
OwnedRwLockWriteGuard
Owned RAII structure used to release the exclusive write access of a RwLock when dropped.
RwLock
An asynchronous readers-writer lock.
RwLockReadGuard
RAII structure used to release the shared read access of a RwLock when dropped.
RwLockWriteGuard
RAII structure used to release the exclusive write access of a RwLock when dropped.