1.0.0[][src]Struct std::sync::RwLockReadGuard

#[must_use = "if unused the RwLock will immediately unlock"]
pub struct RwLockReadGuard<'a, T: ?Sized + 'a> { /* 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: ?Sized + Display> Display for RwLockReadGuard<'a, T>
1.20.0
[src]

Formats the value using the given formatter. Read more

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

Formats the value using the given formatter. Read more

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

The resulting type after dereferencing.

Important traits for &'a mut I

Dereferences the value.

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

Executes the destructor for this type. Read more

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

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

Blanket Implementations

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from #33417)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from #33417)

Performs the conversion.

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from #33417)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from #33417)

Performs the conversion.

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]

Important traits for &'a mut I

Immutably borrows from an owned value. Read more

impl<T> BorrowMut for T where
    T: ?Sized
[src]

Important traits for &'a mut I

Mutably borrows from an owned value. Read more

impl<T> Any for T where
    T: 'static + ?Sized
[src]

🔬 This is a nightly-only experimental API. (get_type_id #27745)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> ToString for T where
    T: Display + ?Sized
[src]

Converts the given value to a String. Read more