Struct futures_util::lock::BiLockAcquire
source · pub struct BiLockAcquire<'a, T> { /* private fields */ }
Expand description
Future returned by BiLock::lock
which will resolve when the lock is
acquired.
Trait Implementations§
source§impl<'a, T: Debug> Debug for BiLockAcquire<'a, T>
impl<'a, T: Debug> Debug for BiLockAcquire<'a, T>
source§impl<'a, T> Future for BiLockAcquire<'a, T>
impl<'a, T> Future for BiLockAcquire<'a, T>
impl<T> Unpin for BiLockAcquire<'_, T>
Auto Trait Implementations§
impl<'a, T> !RefUnwindSafe for BiLockAcquire<'a, T>
impl<'a, T> Send for BiLockAcquire<'a, T>where
T: Send,
impl<'a, T> Sync for BiLockAcquire<'a, T>where
T: Send,
impl<'a, T> !UnwindSafe for BiLockAcquire<'a, T>
Blanket Implementations§
source§impl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere
F: Future,
§type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
source§fn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more