pub struct AsyncWriteLockGuard<'a, T: 'a> { /* private fields */ }Trait Implementations§
Source§impl<'a, T> Deref for AsyncWriteLockGuard<'a, T>
impl<'a, T> Deref for AsyncWriteLockGuard<'a, T>
Source§impl<'a, T> DerefMut for AsyncWriteLockGuard<'a, T>
impl<'a, T> DerefMut for AsyncWriteLockGuard<'a, T>
Source§impl<T> Drop for AsyncWriteLockGuard<'_, T>
If an AsyncWriteLockGuard get’s dropped we need to wake the Futures that might have registered themself and
are waiting to aquire the lock.
impl<T> Drop for AsyncWriteLockGuard<'_, T>
If an AsyncWriteLockGuard get’s dropped we need to wake the Futures that might have registered themself and
are waiting to aquire the lock.
Auto Trait Implementations§
impl<'a, T> Freeze for AsyncWriteLockGuard<'a, T>
impl<'a, T> !RefUnwindSafe for AsyncWriteLockGuard<'a, T>
impl<'a, T> Send for AsyncWriteLockGuard<'a, T>where
T: Send,
impl<'a, T> Sync for AsyncWriteLockGuard<'a, T>where
T: Send,
impl<'a, T> Unpin for AsyncWriteLockGuard<'a, T>
impl<'a, T> !UnwindSafe for AsyncWriteLockGuard<'a, T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more