Structsยง
- Mutex
- An allocation-free
Mutexmade in pure Rust. - Mutex
Guard - Unique guard created by the method
Mutex::lockandMutex::try_lock. - RwLock
- An allocation-free
RwLockmade in pure Rust. - Shared
Guard - Read-only shared guard created by the methods
RwLock::readandRwLock::try_read. - Unique
Guard - Unique guard created by the methods
RwLock::writeandRwLock::try_write.