Structsยง
- RwLock
- Spin-based Read-write Lock
- RwLock
Read Guard_ - A guard that provides immutable data access.
- RwLock
Upgradeable Guard_ - A guard that provides immutable data access but can be atomically
upgraded to
RwLockWriteGuard. - RwLock
Write Guard_ - A guard that provides mutable data access.
Constantsยง
- BEING_
UPGRADED ๐ - MAX_
READER ๐ - READER ๐
- UPGRADEABLE_
READER ๐ - WRITER ๐
Type Aliasesยง
- ArcRw
Lock Read Guard - A guard that provides shared read access to the data protected by a
Arc<RwLock>. - ArcRw
Lock Upgradeable Guard - A upgradable guard that provides read access to the data protected by a
Arc<RwLock>. - ArcRw
Lock Write Guard - A guard that provides exclusive write access to the data protected by a
Arc<RwLock>. - RwLock
Read Guard - A guard that provides shared read access to the data protected by a
RwLock. - RwLock
Upgradeable Guard - A upgradable guard that provides read access to the data protected by a
RwLock. - RwLock
Write Guard - A guard that provides exclusive write access to the data protected by a
RwLock.