pub type ArcRwLockReadGuard<T, G> = RwLockReadGuard_<T, Arc<RwLock<T, G>>, G>;Expand description
A guard that provides shared read access to the data protected by a Arc<RwLock>.
Aliased Typeยง
struct ArcRwLockReadGuard<T, G> { /* private fields */ }