[−][src]Crate async_lock
Async locking primitives.
This crate provides two primitives:
Structs
| Mutex | An async mutex. |
| MutexGuard | A guard that releases the mutex when dropped. |
| RwLock | An async reader-writer lock. |
| RwLockReadGuard | A guard that releases the read lock when dropped. |
| RwLockWriteGuard | A guard that releases the write lock when dropped. |