Struct spin::RwLockWriteGuard [] [src]

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

A guard to which the protected data can be written

When the guard falls out of scope it will release the lock.

Trait Implementations

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

The resulting type after dereferencing

The method called to dereference a value

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

The method called to mutably dereference a value

impl<'rwlock, T: ?Sized> Drop for RwLockWriteGuard<'rwlock, T>
[src]

A method called when the value goes out of scope. Read more