Struct std::sync::RwLockReadGuard [] [src]

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

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

Trait Implementations

impl<'a, T: ?Sized> !Send for RwLockReadGuard<'a, T>

impl<'rwlock, T: ?Sized> Deref for RwLockReadGuard<'rwlock, T>

type Target = T

fn deref(&self) -> &T

impl<'a, T: ?Sized> Drop for RwLockReadGuard<'a, T>

fn drop(&mut self)