Module mutex_impl

Source

Structs§

Mutex
Provides interior mutability.

Type Aliases§

MutexGuard
The lock you get from Mutex. An RAII implementation of a “scoped lock” of a mutex. When this structure is dropped (falls out of scope), the lock will be unlocked.