pub struct OrderedRwLockWriteOwnedGuard<T: ?Sized> { /* private fields */ }
Expand description
An owned handle to a held RWLock.
This guard is only available from a RWLock that is wrapped in an Arc
. It is identical to WriteLockGuard
, except that rather than borrowing the RWLock
, it clones the Arc
, incrementing the reference count. This means that unlike WriteLockGuard
, it will have the 'static
lifetime.
As long as you have this guard, you have exclusive access to the underlying T
. The guard internally keeps a reference-couned pointer to the original RWLock
, so even if the lock goes away, the guard remains valid.
The lock is automatically released and waked the next locker whenever the guard is dropped, at which point lock will succeed yet again.
Trait Implementations§
Source§impl<T: ?Sized> Deref for OrderedRwLockWriteOwnedGuard<T>
impl<T: ?Sized> Deref for OrderedRwLockWriteOwnedGuard<T>
Source§impl<T: ?Sized> DerefMut for OrderedRwLockWriteOwnedGuard<T>
impl<T: ?Sized> DerefMut for OrderedRwLockWriteOwnedGuard<T>
Source§impl<T: ?Sized> Drop for OrderedRwLockWriteOwnedGuard<T>
impl<T: ?Sized> Drop for OrderedRwLockWriteOwnedGuard<T>
impl<T> Send for OrderedRwLockWriteOwnedGuard<T>
impl<T> Sync for OrderedRwLockWriteOwnedGuard<T>
Auto Trait Implementations§
impl<T> Freeze for OrderedRwLockWriteOwnedGuard<T>where
T: ?Sized,
impl<T> !RefUnwindSafe for OrderedRwLockWriteOwnedGuard<T>
impl<T> Unpin for OrderedRwLockWriteOwnedGuard<T>where
T: ?Sized,
impl<T> !UnwindSafe for OrderedRwLockWriteOwnedGuard<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