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
Provides interior mutability. Only thread-safe if the multi_threaded
feature is enabled.
A wrapper type for a mutably borrowed value from an AtomicRefCell<T>
.
Provides interior mutability. Only thread-safe if the multi_threaded
feature is enabled.
A wrapper type for an immutably borrowed value from an AtomicRefCell<T>
.
A wrapper type for a mutably borrowed value from an AtomicRefCell<T>
.