Struct futures_mutex::FutMutexGuard [] [src]

pub struct FutMutexGuard<'a, T: 'a> { /* fields omitted */ }

Returned RAII guard from the poll_lock method.

This structure acts as a sentinel to the data in the FutMutex<T> itself, implementing Deref and DerefMut to T. When dropped, the lock will be unlocked.

Trait Implementations

impl<'a, T: Debug + 'a> Debug for FutMutexGuard<'a, T>
[src]

Formats the value using the given formatter.

impl<'a, T> Deref for FutMutexGuard<'a, T>
[src]

The resulting type after dereferencing

The method called to dereference a value

impl<'a, T> DerefMut for FutMutexGuard<'a, T>
[src]

The method called to mutably dereference a value

impl<'a, T> Drop for FutMutexGuard<'a, T>
[src]

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