Struct OwnedMutexLockFuture
struct OwnedMutexLockFuture<T: ?Sized> { ... }
A future which resolves when the target mutex has been successfully acquired, owned version.
Implementations
impl<F> IntoFuture for OwnedMutexLockFuture<T>
fn into_future(self: Self) -> <F as IntoFuture>::IntoFuture
impl<T> Any for OwnedMutexLockFuture<T>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for OwnedMutexLockFuture<T>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for OwnedMutexLockFuture<T>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> Freeze for OwnedMutexLockFuture<T>
impl<T> From for OwnedMutexLockFuture<T>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> FutureExt for OwnedMutexLockFuture<T>
impl<T> RefUnwindSafe for OwnedMutexLockFuture<T>
impl<T> Unpin for OwnedMutexLockFuture<T>
impl<T> UnsafeUnpin for OwnedMutexLockFuture<T>
impl<T> UnwindSafe for OwnedMutexLockFuture<T>
impl<T, U> Into for OwnedMutexLockFuture<T>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for OwnedMutexLockFuture<T>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for OwnedMutexLockFuture<T>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>
impl<T: ?Sized + Send> Send for OwnedMutexLockFuture<T>
impl<T: ?Sized> Debug for OwnedMutexLockFuture<T>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl<T: ?Sized> Drop for OwnedMutexLockFuture<T>
fn drop(self: &mut Self)
impl<T: ?Sized> FusedFuture for OwnedMutexLockFuture<T>
fn is_terminated(self: &Self) -> bool
impl<T: ?Sized> Future for OwnedMutexLockFuture<T>
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<<Self as >::Output>