Expand description
Auxiliary types for the RwLock
type
Structsยง
- Read
Guard - A guard that provides immutable access to the data in an
RwLock
. The data can be accessed using theDeref
implementation. - RwLock
- An async reader-writer lock.
- Write
Guard - A guard that provides mutable access to the data in an
RwLock
. The data can be accessed using theDeref
andDerefMut
implementations.