Type Alias parking_lot::RwLockWriteGuard

source ·
pub type RwLockWriteGuard<'a, T> = RwLockWriteGuard<'a, RawRwLock, T>;
Expand description

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

Aliased Type§

struct RwLockWriteGuard<'a, T> { /* private fields */ }

Trait Implementations§

source§

impl<'a, R, T> Deref for RwLockWriteGuard<'a, R, T>where R: RawRwLock + 'a, T: 'a + ?Sized,

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &T

Dereferences the value.