Expand description

Provides a simple mutex that does not support blocking or poisoning, but is faster and simpler than the mutex in stdlib.

Structs

A mutual exclusion primitive that does not support blocking or poisoning. This results in a simpler and faster implementation.
A RAII scoped lock on a TryMutex. When this this structure is dropped, the mutex will be unlocked.