Module no_std_async::rwlock

source ·
Expand description

Auxiliary types for the RwLock type

Structs

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