Expand description
The simple Mutex, which will provide unique access to you data between multiple threads/futures.
Structsยง
- Mutex
- The simple Mutex, which will provide unique access to you data between multiple threads/futures.
- Mutex
Guard - The Simple Mutex Guard
As long as you have this guard, you have exclusive access to the underlying
T
. The guard internally borrows the Mutex, so the mutex will not be dropped while a guard exists. The lock is automatically released and waked the next locker whenever the guard is dropped, at which point lock will succeed yet again. - Mutex
Guard Future - Mutex
Owned Guard - An owned handle to a held Mutex.
This guard is only available from a Mutex that is wrapped in an
Arc
. It is identical toMutexGuard
, except that rather than borrowing theMutex
, it clones theArc
, incrementing the reference count. This means that unlikeMutexGuard
, it will have the'static
lifetime. As long as you have this guard, you have exclusive access to the underlyingT
. The guard internally keeps a reference-couned pointer to the originalMutex
, so even if the lock goes away, the guard remains valid. The lock is automatically released and waked the next locker whenever the guard is dropped, at which point lock will succeed yet again. - Mutex
Owned Guard Future