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]
type Target = T
The resulting type after dereferencing.
fn deref(&self) -> &T
[src]
Dereferences the value.