Expand description
Async read-write lock.
This module provides a read-write lock that can be used to synchronize data between asynchronous tasks.
Structs§
- RwLock
- Async read-write lock.
- RwLock
Read Guard - Async read lock guard.
- RwLock
Write Guard - Async write lock guard.
- TryLock
Error - Error returned by
RwLock::try_read
andRwLock::try_write
when the lock is already held.