Struct spin::RwLockReadGuard [] [src]

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

A guard to which the protected data can be read

When the guard falls out of scope it will decrement the read count, potentially releasing the lock.

Trait Implementations

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

The resulting type after dereferencing

The method called to dereference a value

impl<'rwlock, T: ?Sized> Drop for RwLockReadGuard<'rwlock, T>
[src]

A method called when the value goes out of scope. Read more