W3cubDocs

/Rust

Struct std::sync::MutexGuard

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

Trait Implementations

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

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

The resulting type after dereferencing

The method called to dereference a value

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

The method called to mutably dereference a value

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

A method called when the value goes out of scope. Read more

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

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