W3cubDocs

/Rust

Struct std::sync::RwLockWriteGuard

#[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.

Trait Implementations

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

impl<'a, T: Debug> Debug for RwLockWriteGuard<'a, T>
1.15.0
[src]

Formats the value using the given formatter.

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

The resulting type after dereferencing

The method called to dereference a value

impl<'rwlock, T: ?Sized> DerefMut for RwLockWriteGuard<'rwlock, T> [src]

The method called to mutably dereference a value

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

A method called when the value goes out of scope. 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