Struct std::sync::MutexGuard1.0.0 [] [src]

#[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.

Trait Implementations

impl<'a, T: ?Sized> !Send for MutexGuard<'a, T>
[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]

The resulting type after dereferencing.

Important traits for &'a mut I

Dereferences the value.

impl<'mutex, T: ?Sized> DerefMut for MutexGuard<'mutex, T>
[src]

Important traits for &'a mut I

Mutably dereferences the value.

impl<'a, T: ?Sized> Drop for MutexGuard<'a, T>
[src]

Executes the destructor for this type. Read more

impl<'a, T: ?Sized + Debug> Debug for MutexGuard<'a, T>
1.16.0
[src]

Formats the value using the given formatter. Read more

impl<'a, T: ?Sized + Display> Display for MutexGuard<'a, T>
1.20.0
[src]

Formats the value using the given formatter. Read more