3 unstable releases
Uses old Rust 2015
| 0.2.0 | Feb 21, 2019 |
|---|---|
| 0.1.1 | Apr 13, 2016 |
| 0.1.0 | Mar 30, 2016 |
#1629 in Concurrency
20KB
282 lines
A crate designed to allow batch-locking/batch-unlocking of groups of locks.
This crate was initially designed to permit refactoring of code using RefCell into Sync code.
Variants of RwLock that support sublocks, opened for reading if the main RwLock
is opened for reading, opened for writing if the main RwLock is opened for writing.
This crate has been designed to permit refactoring of code using RefCell into
Sync code.