Struct spinlock::SpinLockReadGuard [-] [+] [src]

#[must_use]
pub struct SpinLockReadGuard<'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 SpinLockReadGuard<'a, T>

impl<'a, T> Deref for SpinLockReadGuard<'a, T>

type Target = T

fn deref(&self) -> &T

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

fn drop(&mut self)