RwLockWriteGuard

Struct RwLockWriteGuard 

Source
pub struct RwLockWriteGuard<'rwlock, T: ?Sized + 'rwlock> { /* private fields */ }
🔬This is a nightly-only experimental API. (sync_poison_mod #134646)
Expand description

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

This structure is created by the write and try_write methods on RwLock.

Implementations§

Source§

impl<'rwlock, T: ?Sized> RwLockWriteGuard<'rwlock, T>