no_mutex-0.0.1 doesn't have any documentation.
no_mutex
** this only works on nightly **
A mutex like construct for single threaded applications.
- Gives you Sync and Send container
- Lazily loads the mutex value with
Default
- panics if you lock it twice since deadlocking a single threaded app would be pointless
use Mutex;
static FOO: = default;