[][src]Struct futures::lock::MutexLockFuture

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

A future which resolves when the target mutex has been successfully acquired.

Trait Implementations

impl<'_, T> Debug for MutexLockFuture<'_, T> where
    T: ?Sized
[src]

impl<'_, T> Drop for MutexLockFuture<'_, T> where
    T: ?Sized
[src]

impl<'_, T> FusedFuture for MutexLockFuture<'_, T> where
    T: ?Sized
[src]

impl<'a, T> Future for MutexLockFuture<'a, T> where
    T: ?Sized
[src]

type Output = MutexGuard<'a, T>

The type of value produced on completion.

impl<'_, T> Send for MutexLockFuture<'_, T> where
    T: Send + ?Sized
[src]

impl<'_, T> Sync for MutexLockFuture<'_, T> where
    T: ?Sized
[src]

Auto Trait Implementations

impl<'a, T> !RefUnwindSafe for MutexLockFuture<'a, T>

impl<'a, T: ?Sized> Unpin for MutexLockFuture<'a, T>

impl<'a, T> !UnwindSafe for MutexLockFuture<'a, T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> FutureExt for T where
    T: Future + ?Sized
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.