Struct libmcs::mcs::MutexGuard [] [src]

pub struct MutexGuard<'a, T: ?Sized + 'a> { /* fields omitted */ }

An RAII implementation of a scoped locking. When this structure is dropped (falls out of scope), the mutex 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<'mutex, T: ?Sized> Drop for MutexGuard<'mutex, T>
[src]

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

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

Formats the value using the given formatter.