Expand description
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.
Modulesยง
- cell
- Variants of
RefCell
that support sublocks, opened for reading if the mainRefCell
is opened for reading, opened for writing if the mainRefCell
is opened for writing. - sync
- Variants of
RwLock
that support sublocks, opened for reading if the mainRwLock
is opened for reading, opened for writing if the mainRwLock
is opened for writing.