Module epaint::mutex::rw_lock_impl
source · Structs§
- Provides interior mutability.
Type Aliases§
- The lock you get from
RwLock::read
. An RAII read lock guard returned byRwLockReadGuard::map
, which can point to a subfield of the protected data. - The lock you get from
RwLock::write
. An RAII write lock guard returned byRwLockWriteGuard::map
, which can point to a subfield of the protected data.