Struct std::sync::RwLockWriteGuard [] [src]

#[must_use]
pub struct RwLockWriteGuard<'a, T: ?Sized + 'a> {
    // some fields omitted
}

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

Trait Implementations

impl<'a, T: ?Sized> !Send for RwLockWriteGuard<'a, T>

impl<'rwlock, T: ?Sized> Deref for RwLockWriteGuard<'rwlock, T>

type Target = T

fn deref(&self) -> &T

impl<'rwlock, T: ?Sized> DerefMut for RwLockWriteGuard<'rwlock, T>

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

impl<'a, T: ?Sized> Drop for RwLockWriteGuard<'a, T>

fn drop(&mut self)