Struct std::sync::RwLockReadGuard 1.0.0
[−]
[src]
#[must_use]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> !Send for RwLockReadGuard<'a, T>
[src]
impl<'a, T: ?Sized + Sync> Sync for RwLockReadGuard<'a, T>
1.23.0[src]
impl<'a, T: Debug> Debug for RwLockReadGuard<'a, T>
1.16.0[src]
fn fmt(&self, f: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl<'a, T: ?Sized + Display> Display for RwLockReadGuard<'a, T>
1.20.0[src]
fn fmt(&self, f: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl<'rwlock, T: ?Sized> Deref for RwLockReadGuard<'rwlock, T>
[src]
type Target = T
The resulting type after dereferencing.
ⓘImportant traits for &'a mut Ifn deref(&self) -> &T
[src]
ⓘImportant traits for &'a mut I
Dereferences the value.