#[must_use] 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 access through this guard via its Deref
and DerefMut
implementations.
This structure is created by the lock()
and try_lock()
methods on Mutex
.
impl<'a, T: ?Sized> !Send for MutexGuard<'a, T>
[src]
impl<'mutex, T: ?Sized> Deref for MutexGuard<'mutex, T>
[src]
type Target = T
The resulting type after dereferencing
fn deref(&self) -> &T
The method called to dereference a value
impl<'mutex, T: ?Sized> DerefMut for MutexGuard<'mutex, T>
[src]
fn deref_mut(&mut self) -> &mut T
The method called to mutably dereference a value
impl<'a, T: ?Sized> Drop for MutexGuard<'a, T>
[src]
fn drop(&mut self)
A method called when the value goes out of scope. Read more
impl<'a, T: ?Sized + Debug> Debug for MutexGuard<'a, T>
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter.
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/sync/struct.MutexGuard.html