Module rwlock

Source
Expand description

Auxiliary types for the RwLock type

Structsยง

ReadGuard
A guard that provides immutable access to the data in an RwLock. The data can be accessed using the Deref implementation.
RwLock
An async reader-writer lock.
WriteGuard
A guard that provides mutable access to the data in an RwLock. The data can be accessed using the Deref and DerefMut implementations.