Expand description
§readlock
(Shared) Read-Only Lock: A thing that can be useful when you don’t really want shared mutability, you just want to mutate a value from one place and read it from many others.
This library provides three types:
Shared<T>: similar toArc<RwLock<T>>, but you can only createSharedReadLock<T>s andWeakReadLock<T>s from it that share access to the same inner value, not furtherShared<T>s. Also, acquiring a write lock requires unique ownership / borrowing (&mut self). However: Reading requires no locking because mutably borrowing theSharedmeans that no other thread can be mutating the value at the same time (all other reference to the value are read-only).SharedReadLock<T>: like aArc<RwLock<T>>that is only ever used for reading. Can be downgraded toWeakReadLock.WeakReadLock<T>: like aWeak<RwLock<T>>. That is, it references the same memory, but if the originalSharedand any derivedSharedReadLocks to that value are dropped, it will be deallocated regardless of anyWeakReadLocks. Must be upgraded intoSharedReadLockto access the inner value.
Structs§
- A wrapper around a resource possibly shared with
SharedReadLocks andWeakReadLocks, but no otherShareds. - RAII structure used to release the shared read access of a lock when dropped.
- A read-only reference to a resource possibly shared with up to one
Sharedand manyWeakReadLocks. - RAII structure used to release the exclusive write access of a lock when dropped.
- A weak read-only reference to a resource possibly shared with up to one
Sharedand manySharedReadLocks.