#[must_use] 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
.
impl<'a, T: ?Sized> !Send for RwLockWriteGuard<'a, T>
[src]
impl<'a, T: ?Sized + Sync> Sync for RwLockWriteGuard<'a, T>
impl<'a, T: Debug> Debug for RwLockWriteGuard<'a, T>
fn fmt(&self, f: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl<'a, T: ?Sized + Display> Display for RwLockWriteGuard<'a, T>
fn fmt(&self, f: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl<'rwlock, T: ?Sized> Deref for RwLockWriteGuard<'rwlock, T>
[src]
type Target = T
The resulting type after dereferencing.
fn deref(&self) -> &T
[src]
Dereferences the value.
impl<'rwlock, T: ?Sized> DerefMut for RwLockWriteGuard<'rwlock, T>
[src]
fn deref_mut(&mut self) -> &mut T
[src]
Mutably dereferences the value.
impl<'a, T: ?Sized> Drop for RwLockWriteGuard<'a, T>
[src]
fn drop(&mut self)
[src]
Executes the destructor for this type. Read more
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/sync/struct.RwLockWriteGuard.html