Struct std::sync::MutexGuard 1.0.0
[−]
[src]
An RAII implementation of a "scoped lock" of a mutex. When this structure is dropped (falls out of scope), the lock will be unlocked.
The data protected by the mutex can be accessed through this guard via its
Deref
and DerefMut
implementations.
This structure is created by the lock
and try_lock
methods on
Mutex
.
Trait Implementations
impl<'a, T: ?Sized> !Send for MutexGuard<'a, T>
[src]
impl<'a, T: ?Sized> !Send for MutexGuard<'a, T>
impl<'a, T: ?Sized + Sync> Sync for MutexGuard<'a, T>
1.19.0[src]
impl<'a, T: ?Sized + Sync> Sync for MutexGuard<'a, T>
1.19.0
[src]impl<'mutex, T: ?Sized> Deref for MutexGuard<'mutex, T>
[src]
[+]
impl<'mutex, T: ?Sized> Deref for MutexGuard<'mutex, T>
impl<'mutex, T: ?Sized> DerefMut for MutexGuard<'mutex, T>
[src]
[+]
impl<'mutex, T: ?Sized> DerefMut for MutexGuard<'mutex, T>
impl<'a, T: ?Sized> Drop for MutexGuard<'a, T>
[src]
[+]
impl<'a, T: ?Sized> Drop for MutexGuard<'a, T>
impl<'a, T: ?Sized + Debug> Debug for MutexGuard<'a, T>
1.16.0[src]
[+]
impl<'a, T: ?Sized + Debug> Debug for MutexGuard<'a, T>
1.16.0
[src]impl<'a, T: ?Sized + Display> Display for MutexGuard<'a, T>
1.20.0[src]
[+]
impl<'a, T: ?Sized + Display> Display for MutexGuard<'a, T>
1.20.0
[src]