Struct mcs::Guard [] [src]

#[must_use]
pub struct Guard<'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

Trait Implementations

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

The resulting type after dereferencing

The method called to dereference a value

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

The method called to mutably dereference a value

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

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