Struct fi::sync::RwLockReadGuard1.0.0 [] [src]

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

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

This structure is created by the read and try_read methods on RwLock.

Trait Implementations

impl<'a, T> Sync for RwLockReadGuard<'a, T> where
    T: Sync + ?Sized
1.23.0
[src]

impl<'a, T> Debug for RwLockReadGuard<'a, T> where
    T: Debug
1.16.0
[src]

[src]

Formats the value using the given formatter. Read more

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

The resulting type after dereferencing.

Important traits for &'a mut W
[src]

Dereferences the value.

impl<'a, T> Display for RwLockReadGuard<'a, T> where
    T: Display + ?Sized
1.20.0
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Executes the destructor for this type. Read more

impl<'a, T> !Send for RwLockReadGuard<'a, T> where
    T: ?Sized
[src]