Struct MutexLockFuture

struct MutexLockFuture<'a, T: ?Sized> { ... }

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

Implementations

impl<'a, T> Freeze for MutexLockFuture<'a, T>

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

impl<'a, T> Unpin for MutexLockFuture<'a, T>

impl<'a, T> UnsafeUnpin for MutexLockFuture<'a, T>

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

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

fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<<Self as >::Output>

impl<F> IntoFuture for MutexLockFuture<'a, T>

fn into_future(self: Self) -> <F as IntoFuture>::IntoFuture

impl<T> Any for MutexLockFuture<'a, T>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for MutexLockFuture<'a, T>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for MutexLockFuture<'a, T>

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> From for MutexLockFuture<'a, T>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> FutureExt for MutexLockFuture<'a, T>

impl<T, U> Into for MutexLockFuture<'a, T>

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for MutexLockFuture<'a, T>

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for MutexLockFuture<'a, T>

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>

impl<T: ?Sized + Send> Send for MutexLockFuture<'_, T>

impl<T: ?Sized> Debug for MutexLockFuture<'_, T>

fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result

impl<T: ?Sized> Drop for MutexLockFuture<'_, T>

fn drop(self: &mut Self)

impl<T: ?Sized> FusedFuture for MutexLockFuture<'_, T>

fn is_terminated(self: &Self) -> bool

impl<T: ?Sized> Sync for MutexLockFuture<'_, T>