Type Alias RwWriteGuard

1.0.0 · Source
pub type RwWriteGuard<'a, T: ?Sized> = RwLockWriteGuard<'a, RwCount, T>;
Available on non-crate feature use_std only.
Expand description

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

Aliased Type§

struct RwWriteGuard<'a, T: ?Sized> { /* private fields */ }