[][src]Module fast_async_mutex::mutex_unordered

The fast async mutex which uses spinlock algorithm with using waker This realisation dont check an order of mutex acquiring.

Structs

UnorderedMutex

An async unordered mutex. It will be works with any async runtime in Rust, it may be a tokio, smol, async-std and etc..

UnorderedMutexGuard

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.

UnorderedMutexGuardFuture
UnorderedMutexOwnedGuard

An owned handle to a held Mutex. This guard is only available from a Mutex that is wrapped in an Arc. It is identical to UnorderedMutexGuard, except that rather than borrowing the Mutex, it clones the Arc, incrementing the reference count. This means that unlike UnorderedMutexGuard, it will have the 'static lifetime. As long as you have this guard, you have exclusive access to the underlying T. The guard internally keeps a reference-couned pointer to the original Mutex, 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.

UnorderedMutexOwnedGuardFuture