#[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 accessed 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<'a, T: ?Sized + Sync> Sync for MutexGuard<'a, T>
impl<'mutex, T: ?Sized> Deref for MutexGuard<'mutex, T>
[src]
type Target = TThe resulting type after dereferencing.
fn deref(&self) -> &T
[src]
Dereferences the value.
impl<'mutex, T: ?Sized> DerefMut for MutexGuard<'mutex, T>
[src]
fn deref_mut(&mut self) -> &mut T
[src]
Mutably dereferences the value.
impl<'a, T: ?Sized> Drop for MutexGuard<'a, T>
[src]
fn drop(&mut self)
[src]
Executes the destructor for this type. Read more
impl<'a, T: ?Sized + Debug> Debug for MutexGuard<'a, T>
fn fmt(&self, f: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl<'a, T: ?Sized + Display> Display for MutexGuard<'a, T>
fn fmt(&self, f: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
© 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