Struct std::sync::RWLockWriteGuardStable [-]  [+] [src]

pub struct RWLockWriteGuard<'a, T: 'a> {
    // some fields omitted
}

RAII structure used to release the exclusive write access of a lock when dropped.

Trait Implementations

impl<'rwlock, T> Deref<T> for RWLockWriteGuard<'rwlock, T>

fn deref(&self) -> &T

impl<'rwlock, T> DerefMut<T> for RWLockWriteGuard<'rwlock, T>

fn deref_mut(&mut self) -> &mut T

impl<'a, T> Drop for RWLockWriteGuard<'a, T>

fn drop(&mut self)