Struct drone_core::sync::RwLockWriteGuard [] [src]

#[must_use]
pub struct RwLockWriteGuard<'a, T: 'a> { /* fields omitted */ }

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

This structure is created by the try_write method on RwLock.

Trait Implementations

impl<'a, T> !Send for RwLockWriteGuard<'a, T>
[src]

impl<'a, T: Sync> Sync for RwLockWriteGuard<'a, T>
[src]

impl<'a, T> Deref for RwLockWriteGuard<'a, T>
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.

impl<'a, T> DerefMut for RwLockWriteGuard<'a, T>
[src]

[src]

Mutably dereferences the value.

impl<'a, T> Drop for RwLockWriteGuard<'a, T>
[src]

[src]

Executes the destructor for this type. Read more