Module epaint::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 | The lock you get from |
| RwLock | Provides interior mutability. Only thread-safe if the |
Type Definitions
| RwLockReadGuard | The lock you get from |
| RwLockWriteGuard | The lock you get from |