Module std::sync::mutex
[−]
[src]
Reexports
use core::prelude::v1::*; |
use core::cell::UnsafeCell; |
use core::ops::{Deref, DerefMut, Drop}; |
use core::sync::atomic::{AtomicBool, Ordering}; |
use thread; |
Structs
Dummy | |
Mutex |
A mutex, i.e. a form of safe shared memory between threads. See rust std's Mutex. |
MutexGuard |
A mutex guard (returned by .lock()) |
StaticMutex |
Statics
DUMMY |