Module mutex

Source
Expand description

Auxiliary types for the Mutex type

Structsยง

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