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