Struct futures::sync::BiLockAcquired
[−]
[src]
pub struct BiLockAcquired<T> { /* fields omitted */ }
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.
Methods
impl<T> BiLockAcquired<T>
[src]
Trait Implementations
impl<T: Debug> Debug for BiLockAcquired<T>
[src]
impl<T> Deref for BiLockAcquired<T>
[src]
type Target = T
The resulting type after dereferencing
fn deref(&self) -> &T
The method called to dereference a value
impl<T> DerefMut for BiLockAcquired<T>
[src]
fn deref_mut(&mut self) -> &mut T
The method called to mutably dereference a value