Struct futures::sync::BiLockAcquired [−][src]
pub struct BiLockAcquired<T> { /* fields omitted */ }
Expand description
Resolved value of the BiLockAcquire<T>
future.
This value, like BiLockGuard<T>
, is a sentinel to the value T
through
implementations of Deref
and DerefMut
. When dropped will unlock the
lock, and the original unlocked BiLock<T>
can be recovered through the
unlock
method.
Implementations
Trait Implementations
Auto Trait Implementations
impl<T> !RefUnwindSafe for BiLockAcquired<T>
impl<T> Send for BiLockAcquired<T> where
T: Send,
impl<T> Sync for BiLockAcquired<T> where
T: Send,
impl<T> Unpin for BiLockAcquired<T>
impl<T> !UnwindSafe for BiLockAcquired<T>