Struct drone_core::sync::RwLockReadGuard [] [src]

#[must_use]
pub struct RwLockReadGuard<'a, T: 'a> { /* fields omitted */ }

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

This structure is created by the try_read method on RwLock.

Trait Implementations

impl<'a, T> !Send for RwLockReadGuard<'a, T>
[src]

impl<'a, T: Sync> Sync for RwLockReadGuard<'a, T>
[src]

impl<'a, T> Deref for RwLockReadGuard<'a, T>
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.

impl<'a, T> Drop for RwLockReadGuard<'a, T>
[src]

[src]

Executes the destructor for this type. Read more