Structsยง
- Mapped
Mutex Guard - A handle to a held
Mutexthat has had a function applied to it viaMutexGuard::map. - Mapped
Mutex ๐Guard Inner - A helper type used when taking apart a
MappedMutexGuardwithout running its Drop implementation. - Mutex
- An asynchronous
Mutex-like type. - Mutex
Guard - A handle to a held
Mutex. The guard can be held across any.awaitpoint as it isSend. - Mutex
Guard ๐Inner - A helper type used when taking apart a
MutexGuardwithout running its Drop implementation. - Owned
Mapped Mutex Guard - A owned handle to a held
Mutexthat has had a function applied to it viaOwnedMutexGuard::map. - Owned
Mapped ๐Mutex Guard Inner - A helper type used when taking apart a
OwnedMappedMutexGuardwithout running its Drop implementation. - Owned
Mutex Guard - An owned handle to a held
Mutex. - Owned
Mutex ๐Guard Inner - A helper type used when taking apart a
OwnedMutexGuardwithout running its Drop implementation. - TryLock
Error - Error returned from the
Mutex::try_lock,RwLock::try_readandRwLock::try_writefunctions.