Type Alias RwLockReadGuard

Source
pub type RwLockReadGuard<'a, T, G> = RwLockReadGuard_<T, &'a RwLock<T, G>, G>;
Expand description

A guard that provides shared read access to the data protected by a RwLock.

Aliased Typeยง

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