Expand description
Synchronization primitives for async contexts
Structsยง
- Mutex
- An async mutex
- Mutex
Guard - An RAII guard that releases the mutex when dropped
- Mutex
Lock Future - A Future that blocks until the Mutex can be locked, then returns the MutexGuard
- RwLock
- An async RwLock
- RwLock
Future - A Future that blocks until the RwLock can be acquired.
- RwLock
Read Guard - An RAII guard that releases a read lock when dropped
- RwLock
Write Guard - An RAII guard that releases the write lock when dropped