Crate readlock_tokio
source ·Expand description
Structs§
- RAII structure used to release the shared read access of a lock when dropped.
- A wrapper around a resource possibly shared with
SharedReadLock
s andWeakReadLock
s, but no otherShared
s. - RAII structure used to release the shared read access of a lock when dropped.
- A read-only reference to a resource possibly shared with up to one
Shared
and manyWeakReadLock
s. - RAII structure used to release the exclusive write access of a lock when dropped.
- Error returned from
SharedReadLock::try_lock
. - A weak read-only reference to a resource possibly shared with up to one
Shared
, and manySharedReadLock
s.
Type Aliases§
- A type alias for the result of a nonblocking locking method.