Struct std::sync::MutexGuard[src]
pub struct MutexGuard<'a, T> {
pub cond: Condvar<'a>,
// some fields omitted
}An guard which is created by locking a mutex. Through this guard the underlying data can be accessed.
Fields
cond |
pub struct MutexGuard<'a, T> {
pub cond: Condvar<'a>,
// some fields omitted
}An guard which is created by locking a mutex. Through this guard the underlying data can be accessed.
cond |
impl<'a, T: Send> Deref<T> for MutexGuard<'a, T>impl<'a, T: Send> DerefMut<T> for MutexGuard<'a, T>
Prefix searches with a type followed by a colon (e.g.
fn:) to restrict the search to a given type.
Accepted types are: fn, mod,
struct (or str), enum,
trait, typedef (or
tdef).