Crate rwlock2 [] [src]

rwlock2

A temporary fork of the RwLock type from std, supplying map methods on the Read and Write guard types.

When these methods land in std, this crate will be obsolete.

Structs

RwLock

A reader-writer lock

RwLockReadGuard

RAII structure used to release the shared read access of a lock when dropped.

RwLockWriteGuard

RAII structure used to release the exclusive write access of a lock when dropped.