[][src]Crate sync_2

Structs

Mutex

An allocation-free Mutex made in pure Rust.

MutexGuard

Unique guard created by the method Mutex::lock and Mutex::try_lock.

RwLock

An allocation-free RwLock made in pure Rust.

SharedGuard

Read-only shared guard created by the methods RwLock::read and RwLock::try_read.

UniqueGuard

Unique guard created by the methods RwLock::write and RwLock::try_write.