Crate one_shot_mutex

Source
Expand description

One-shot locks that panic instead of (dead)locking on contention.

These locks allow no contention and panic instead of blocking on lock if they are already locked. This is useful in situations where contention would be a bug, such as in single-threaded programs that would deadlock on contention.

See the sync::RawOneShotMutex and sync::RawOneShotRwLock types for more information.

Modules§

sync
One-shot lock variants that implement Sync.
unsync
One-shot lock variants that do not implement Sync.