Struct sync::RWLockReadGuard[src]
pub struct RWLockReadGuard<'a, T> {
// some fields omitted
}A guard which is created by locking an rwlock in read mode. Through this guard the underlying data can be accessed.
pub struct RWLockReadGuard<'a, T> {
// some fields omitted
}A guard which is created by locking an rwlock in read mode. Through this guard the underlying data can be accessed.
impl<'a, T: Send + Share> Deref<T> for RWLockReadGuard<'a, T>fn deref<'a>(&'a self) -> &'a T
Prefix searches with a type followed by a colon (e.g.
fn:) to restrict the search to a given type.
Accepted types are: fn, mod,
struct (or str), enum,
trait, typedef (or
tdef).