Struct std::sync::RwLockReadGuardStable [-] [+] [src]

#[must_use]
pub struct RwLockReadGuard<'a, T: 'a> {
    // some fields omitted
}

RAII structure used to release the shared read access of a lock when dropped.

Trait Implementations

impl<'a, T> !Send for RwLockReadGuard<'a, T>

impl<'rwlock, T> Deref for RwLockReadGuard<'rwlock, T>

type Target = T

fn deref(&self) -> &T

impl<'a, T> Drop for RwLockReadGuard<'a, T>

fn drop(&mut self)