[src]

Struct sync::RWLockReadGuard

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> Deref<T> for RWLockReadGuard<'a, T>

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