Struct futures::sync::BiLockGuard [−][src]
pub struct BiLockGuard<'a, T: 'a> { /* fields omitted */ }
Expand description
Returned RAII guard from the poll_lock
method.
This structure acts as a sentinel to the data in the BiLock<T>
itself,
implementing Deref
and DerefMut
to T
. When dropped, the lock will be
unlocked.
Trait Implementations
Auto Trait Implementations
impl<'a, T> !RefUnwindSafe for BiLockGuard<'a, T>
impl<'a, T> Send for BiLockGuard<'a, T> where
T: Send,
impl<'a, T> Sync for BiLockGuard<'a, T> where
T: Send,
impl<'a, T> Unpin for BiLockGuard<'a, T>
impl<'a, T> !UnwindSafe for BiLockGuard<'a, T>