Struct spin::MutexGuard [] [src]

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

A guard to which the protected data can be accessed

When the guard falls out of scope it will release the lock.

Trait Implementations

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

The resulting type after dereferencing

The method called to dereference a value

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

The method called to mutably dereference a value

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

The dropping of the MutexGuard will release the lock it was created from.