Expand description
A futures-aware RwLock with ref_count, upgrade, and downgrade methods.
Based on the RwLock in futures_locks,
which in turn is based on std::sync::RwLock.
Does not use message passing.
Structsยง
- RwLock
- RwLock
Read Future - A
Futurerepresenting a pending read lock. - RwLock
Read Guard - A read guard for
RwLock(can be dereferenced into&T) - RwLock
Write Future - A
Futurerepresenting a pending write lock. - RwLock
Write Guard - A write guard for
RwLock(can be dereferenced into&mut T)