Expand description
A lock that provides data access to either one writer or many readers.
Structs§
- RwLock
- A lock that provides data access to either one writer or many readers.
- RwLock
Read Guard - A guard that provides immutable data access.
- RwLock
Upgradable Guard - A guard that provides immutable data access but can be upgraded to
RwLockWriteGuard
. - RwLock
Write Guard - A guard that provides mutable data access.