#[repr(transparent)]pub struct RwLockWriteGuard<'rwlock, T: ?Sized>(RwLockWriteGuard<'rwlock, T>);Expand description
RAII structure used to release the exclusive write access of a lock when dropped.
Tuple Fields§
§0: RwLockWriteGuard<'rwlock, T>Trait Implementations§
Source§impl<T: ?Sized> Deref for RwLockWriteGuard<'_, T>
impl<T: ?Sized> Deref for RwLockWriteGuard<'_, T>
Auto Trait Implementations§
impl<'rwlock, T> Freeze for RwLockWriteGuard<'rwlock, T>where
T: ?Sized,
impl<'rwlock, T> RefUnwindSafe for RwLockWriteGuard<'rwlock, T>where
T: ?Sized,
impl<'rwlock, T> !Send for RwLockWriteGuard<'rwlock, T>
impl<'rwlock, T> Sync for RwLockWriteGuard<'rwlock, T>
impl<'rwlock, T> Unpin for RwLockWriteGuard<'rwlock, T>where
T: ?Sized,
impl<'rwlock, T> UnwindSafe for RwLockWriteGuard<'rwlock, T>where
T: ?Sized,
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