pub type RwLockWriteGuard<'a, T, G> = RwLockWriteGuard_<T, &'a RwLock<T, G>, G>;
Expand description
A guard that provides exclusive write access to the data protected by a RwLock
.
Aliased Typeยง
struct RwLockWriteGuard<'a, T, G> { /* private fields */ }