spin

Type Alias RwLockWriteGuard

Source
pub type RwLockWriteGuard<'a, T> = RwLockWriteGuard<'a, T>;
Expand description

A guard that provides mutable data access. See rwlock::RwLockWriteGuard for documentation.

A note for advanced users: this alias exists to avoid subtle type inference errors due to the default relax strategy type parameter. If you need a non-default relax strategy, use the fully-qualified path.

Aliased Typeยง

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