Struct bitflags::__core::sync::RwLockReadGuard [] [src]

#[must_use]
pub struct RwLockReadGuard<'a, T> where T: 'a + ?Sized {
    // 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> where T: ?Sized

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

type Target = T

fn deref(&self) -> &T

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

fn drop(&mut self)