Struct std::sync::RwLockWriteGuard 1.0.0[−][src]
#[must_use = "if unused the RwLock will immediately unlock"]pub struct RwLockWriteGuard<'a, T: ?Sized + 'a> { /* fields omitted */ }
RAII structure used to release the exclusive write access of a lock when dropped.
This structure is created by the write
and try_write
methods
on RwLock
.
Trait Implementations
impl<'a, T: ?Sized> !Send for RwLockWriteGuard<'a, T>
[src]
impl<'a, T: ?Sized> !Send for RwLockWriteGuard<'a, T>
impl<'a, T: ?Sized + Sync> Sync for RwLockWriteGuard<'a, T>
1.23.0[src]
impl<'a, T: ?Sized + Sync> Sync for RwLockWriteGuard<'a, T>
1.23.0
[src]impl<'a, T: Debug> Debug for RwLockWriteGuard<'a, T>
1.16.0[src]
impl<'a, T: Debug> Debug for RwLockWriteGuard<'a, T>
1.16.0
[src]fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<'a, T: ?Sized + Display> Display for RwLockWriteGuard<'a, T>
1.20.0[src]
impl<'a, T: ?Sized + Display> Display for RwLockWriteGuard<'a, T>
1.20.0
[src]fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<'rwlock, T: ?Sized> Deref for RwLockWriteGuard<'rwlock, T>
[src]
impl<'rwlock, T: ?Sized> Deref for RwLockWriteGuard<'rwlock, T>
type Target = T
The resulting type after dereferencing.
ⓘImportant traits for &'a mut Ifn deref(&self) -> &T
[src]
ⓘImportant traits for &'a mut I
fn deref(&self) -> &T
Dereferences the value.
impl<'rwlock, T: ?Sized> DerefMut for RwLockWriteGuard<'rwlock, T>
[src]
impl<'rwlock, T: ?Sized> DerefMut for RwLockWriteGuard<'rwlock, T>
ⓘImportant traits for &'a mut Ifn deref_mut(&mut self) -> &mut T
[src]
ⓘImportant traits for &'a mut I
fn deref_mut(&mut self) -> &mut T
Mutably dereferences the value.
impl<'a, T: ?Sized> Drop for RwLockWriteGuard<'a, T>
[src]
impl<'a, T: ?Sized> Drop for RwLockWriteGuard<'a, T>