Module no_std_async::mutex

source ·
Expand description

Auxiliary types for the Mutex type

Structs

  • A guard that provides mutable access to the data inside of a Mutex. The data can be accessed using the Deref and DerefMut implementations.
  • An async mutex. This is similar to the Mutex type in the standard library, but it is async.