Struct futures_locks::RwLockWriteGuard[][src]

pub struct RwLockWriteGuard<T: ?Sized> { /* fields omitted */ }

An RAII guard, much like std::sync::RwLockWriteGuard. The wrapped data can be accessed via its Deref and DerefMut implementations.

Trait Implementations

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

The resulting type after dereferencing.

Dereferences the value.

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

Mutably dereferences the value.

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

Executes the destructor for this type. Read more

Auto Trait Implementations

impl<T: ?Sized> Send for RwLockWriteGuard<T> where
    T: Send

impl<T: ?Sized> Sync for RwLockWriteGuard<T> where
    T: Send