Structsยง
- Mutex
- An allocation-free
Mutex
made in pure Rust. - Mutex
Guard - Unique guard created by the method
Mutex::lock
andMutex::try_lock
. - RwLock
- An allocation-free
RwLock
made in pure Rust. - Shared
Guard - Read-only shared guard created by the methods
RwLock::read
andRwLock::try_read
. - Unique
Guard - Unique guard created by the methods
RwLock::write
andRwLock::try_write
.