pub struct AsyncReadLockGuard<'a, T: 'a> { /* private fields */ }Trait Implementations§
Source§impl<'a, T> Deref for AsyncReadLockGuard<'a, T>
impl<'a, T> Deref for AsyncReadLockGuard<'a, T>
Source§impl<T> Drop for AsyncReadLockGuard<'_, T>
If an AsyncReadLockGuard 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 AsyncReadLockGuard<'_, T>
If an AsyncReadLockGuard 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 AsyncReadLockGuard<'a, T>
impl<'a, T> !RefUnwindSafe for AsyncReadLockGuard<'a, T>
impl<'a, T> Send for AsyncReadLockGuard<'a, T>where
T: Send,
impl<'a, T> Sync for AsyncReadLockGuard<'a, T>where
T: Send,
impl<'a, T> Unpin for AsyncReadLockGuard<'a, T>
impl<'a, T> !UnwindSafe for AsyncReadLockGuard<'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