Struct futures_locks::RwLockReadGuard[][src]

pub struct RwLockReadGuard<T: ?Sized> { /* fields omitted */ }

An RAII guard, much like std::sync::RwLockReadGuard. The wrapped data can be accessed via its Deref implementation.

Trait Implementations

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

The resulting type after dereferencing.

Dereferences the value.

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

Executes the destructor for this type. Read more

Auto Trait Implementations

impl<T: ?Sized> Send for RwLockReadGuard<T> where
    T: Send

impl<T: ?Sized> Sync for RwLockReadGuard<T> where
    T: Send