Struct std::sync::RwLockWriteGuard 1.0.0
[−]
[src]
#[must_use]pub struct RwLockWriteGuard<'a, T: ?Sized + 'a> { /* fields omitted */ }
RAII structure used to release the exclusive write access of a lock when dropped.
This structure is created by the write()
and try_write()
methods
on RwLock
.
Trait Implementations
impl<'a, T: ?Sized> !Send for RwLockWriteGuard<'a, T>
[src]
impl<'a, T: Debug> Debug for RwLockWriteGuard<'a, T>
1.15.0[src]
impl<'rwlock, T: ?Sized> Deref for RwLockWriteGuard<'rwlock, T>
[src]
type Target = T
The resulting type after dereferencing
fn deref(&self) -> &T
The method called to dereference a value
impl<'rwlock, T: ?Sized> DerefMut for RwLockWriteGuard<'rwlock, T>
[src]
fn deref_mut(&mut self) -> &mut T
The method called to mutably dereference a value