Modules§
- futures 🔒
- raw 🔒
- Raw, unsafe reader-writer locking implementation,
doesn’t depend on the data protected by the lock.
RwLockis implemented in terms of this.
Structs§
- RwLock
- An async reader-writer lock.
- RwLock
Read Guard - A guard that releases the read lock when dropped.
- RwLock
Read Guard Arc - An owned, reference-counting guard that releases the read lock when dropped.
- RwLock
Upgradable Read Guard - A guard that releases the upgradable read lock when dropped.
- RwLock
Upgradable Read Guard Arc - An owned, reference-counting guard that releases the upgradable read lock when dropped.
- RwLock
Write Guard - A guard that releases the write lock when dropped.
- RwLock
Write Guard Arc - An owned, reference-counted guard that releases the write lock when dropped.