Expand description
Mutex and RwLock types that do not poison themselves.
These types expose identical APIs to the standard library Mutex
and
RwLock
except that they do not return PoisonError
s.
Structs§
- Condvar
- Like
std::sync::Condvar
. - Mutex
- Like
std::sync::Mutex
except that it does not poison itself. - Mutex
Guard - Like
std::sync::MutexGuard
. - RwLock
- Like
std::sync::RwLock
except that it does not poison itself. - RwLock
Read Guard - Like
std::sync::RwLockReadGuard
. - RwLock
Write Guard - Like
std::sync::RwLockWriteGuard
. - TryLock
Error - Like
std::sync::TryLockError
. - Wait
Timeout Result - A type indicating whether a timed wait on a condition variable returned due to a time out or not.
Type Aliases§
- TryLock
Result - Like
std::sync::TryLockResult
.