Struct futures_util::lock::BiLockGuard
source · pub struct BiLockGuard<'a, T> { /* private fields */ }
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.
Implementations§
source§impl<T> BiLockGuard<'_, T>
impl<T> BiLockGuard<'_, T>
sourcepub fn as_pin_mut(&mut self) -> Pin<&mut T>
pub fn as_pin_mut(&mut self) -> Pin<&mut T>
Get a mutable pinned reference to the locked value.