Structs§
- A borrowed order-aware lock.
Traits§
- Marks a type as offering ordered lock access for some inner type
T
through theOrderedLockAccess
implementation ofInner
. - Abstracts an exclusive lock (i.e. a Mutex).
- Describes how to apply a lock type to the implementing type.
- Declares a type as the lock level for some type
T
that exposes locked state of typeSelf::Data
. - Marks a type as offering ordered lock access for some inner type
T
. - Abstracts a read write lock (i.e. an RwLock).
- Describes how to acquire reader and writer locks to the implementing type.
- Describes how to access state in
Self
that doesn’t require locking.