Structsยง
- RwMutex
- A mutex that provides data access to either one writer or many readers.
- RwMutex
Read Guard_ - A guard that provides immutable data access.
- RwMutex
Upgradeable Guard_ - A guard that provides immutable data access but can be atomically
upgraded to
RwMutexWriteGuard
. - RwMutex
Write Guard_ - A guard that provides mutable data access.
Constantsยง
- BEING_
UPGRADED ๐ - MAX_
READER ๐ - READER ๐
- UPGRADEABLE_
READER ๐ - WRITER ๐
Type Aliasesยง
- ArcRw
Mutex Read Guard - A guard that provides shared read access to the data protected by a
Arc<RwMutex>
. - ArcRw
Mutex Upgradeable Guard - A upgradable guard that provides read access to the data protected by a
Arc<RwMutex>
. - ArcRw
Mutex Write Guard - A guard that provides exclusive write access to the data protected by a
Arc<RwMutex>
. - RwMutex
Read Guard - A guard that provides shared read access to the data protected by a
RwMutex
. - RwMutex
Upgradeable Guard - A upgradable guard that provides read access to the data protected by a
RwMutex
. - RwMutex
Write Guard - A guard that provides exclusive write access to the data protected by a
RwMutex
.