Struct futures_util::lock::BiLockGuard [−][src]
pub struct BiLockGuard<'a, T> { /* fields omitted */ }This is supported on crate feature
bilock only.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.