Structsยง
- Mapped
Mutex Guard - A handle to a held
Mutex
that has had a function applied to it viaMutexGuard::map
. - Mapped
Mutex ๐Guard Inner - A helper type used when taking apart a
MappedMutexGuard
without 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.await
point as it isSend
. - Mutex
Guard ๐Inner - A helper type used when taking apart a
MutexGuard
without running its Drop implementation. - Owned
Mapped Mutex Guard - A owned handle to a held
Mutex
that has had a function applied to it viaOwnedMutexGuard::map
. - Owned
Mapped ๐Mutex Guard Inner - A helper type used when taking apart a
OwnedMappedMutexGuard
without 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
OwnedMutexGuard
without running its Drop implementation. - TryLock
Error - Error returned from the
Mutex::try_lock
,RwLock::try_read
andRwLock::try_write
functions.