Module lock

Source
Expand description

APIs abstracting over locking primitives.

Structs§

Mutexstd
A wrapper around std::sync::Mutex.
MutexGuard
An RAII implementation of a “scoped lock” of a mutex. When this structure is dropped (falls out of scope), the lock will be unlocked.