Type Alias RwMutexWriteGuard

Source
pub type RwMutexWriteGuard<'a, T> = RwMutexWriteGuard_<T, &'a RwMutex<T>>;
Expand description

A guard that provides exclusive write access to the data protected by a RwMutex.

Aliased Typeยง

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