Struct std::sync::MutexGuard 1.0.0[−][src]
#[must_use = "if unused the Mutex will immediately unlock"]pub struct MutexGuard<'a, T: ?Sized + 'a> { /* fields omitted */ }
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>
type Target = T
The resulting type after dereferencing.
ⓘImportant traits for &'a mut Ifn deref(&self) -> &T
[src]
ⓘImportant traits for &'a mut I
fn deref(&self) -> &T
Dereferences the value.
impl<'mutex, T: ?Sized> DerefMut for MutexGuard<'mutex, T>
[src]
impl<'mutex, T: ?Sized> DerefMut for MutexGuard<'mutex, T>
ⓘImportant traits for &'a mut Ifn deref_mut(&mut self) -> &mut T
[src]
ⓘImportant traits for &'a mut I
fn deref_mut(&mut self) -> &mut T
Mutably dereferences the value.
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]fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
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]