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.

Trait Implementations

impl<'a, T: Send + Share> Deref<T> for RWLockReadGuard<'a, T>

fn deref<'a>(&'a self) -> &'a T