[src]

Struct sync::raw::RWLockReadGuard

pub struct RWLockReadGuard<'a> {
    // some fields omitted
}

An RAII helper which is created by acquiring a read lock on an RWLock. When dropped, this will unlock the RWLock.

Trait Implementations

impl<'a> Drop for RWLockReadGuard<'a>

fn drop(&mut self)