Module egui::mutex [−][src]
Expand description
Helper module that wraps some Mutex types with different implementations.
When the single_threaded feature is on the mutexes will panic when locked from different threads.
Structs
| Mutex | Provides interior mutability. Only thread-safe if the |
| MutexGuard | A wrapper type for a mutably borrowed value from an |
| RwLock | Provides interior mutability. Only thread-safe if the |
| RwLockReadGuard | A wrapper type for an immutably borrowed value from an |
| RwLockWriteGuard | A wrapper type for a mutably borrowed value from an |