Struct parking_lot::MutexGuard [] [src]

#[must_use]
pub struct MutexGuard<'a, T: ?Sized + 'a> {
    // some 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

Trait Implementations

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

type Target = T

The resulting type after dereferencing

fn deref(&self) -> &T

The method called to dereference a value

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

fn deref_mut(&mut self) -> &mut T

The method called to mutably dereference a value

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

fn drop(&mut self)

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