pub type RwLockReadGuard<'a, T> = LockGuard<'a, RwLock<T>, RwLockReadGuard<'a, T>>;
Expand description

Lock guard for read access to a RwLock.

Aliased Type§

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