pub struct RwLockWriteGuard<'a, T: ?Sized + 'a> { /* private fields */ }
Expand description
Implementations§
Source§impl<'a, T: ?Sized> RwLockWriteGuard<'a, T>
impl<'a, T: ?Sized> RwLockWriteGuard<'a, T>
Sourcepub fn map<U, F>(orig: Self, f: F) -> MappedRwLockWriteGuard<'a, U>
🔬This is a nightly-only experimental API. (mapped_lock_guards
#117108)
pub fn map<U, F>(orig: Self, f: F) -> MappedRwLockWriteGuard<'a, U>
mapped_lock_guards
#117108)Makes a MappedRwLockWriteGuard
for a component of the borrowed data, e.g.
an enum variant.
The RwLock
is already locked for writing, so this cannot fail.
This is an associated function that needs to be used as
RwLockWriteGuard::map(...)
. A method would interfere with methods of
the same name on the contents of the RwLockWriteGuard
used through
Deref
.
§Panics
If the closure panics, the guard will be dropped (unlocked) and the RwLock will be poisoned.
Sourcepub fn try_map<U, F>(
orig: Self,
f: F,
) -> Result<MappedRwLockWriteGuard<'a, U>, Self>
🔬This is a nightly-only experimental API. (mapped_lock_guards
#117108)
pub fn try_map<U, F>( orig: Self, f: F, ) -> Result<MappedRwLockWriteGuard<'a, U>, Self>
mapped_lock_guards
#117108)Makes a MappedRwLockWriteGuard
for a component of the borrowed data. The
original guard is returned as an Err(...)
if the closure returns
None
.
The RwLock
is already locked for writing, so this cannot fail.
This is an associated function that needs to be used as
RwLockWriteGuard::try_map(...)
. A method would interfere with methods
of the same name on the contents of the RwLockWriteGuard
used through
Deref
.
§Panics
If the closure panics, the guard will be dropped (unlocked) and the RwLock will be poisoned.
Sourcepub fn downgrade(s: Self) -> RwLockReadGuard<'a, T>
🔬This is a nightly-only experimental API. (rwlock_downgrade
#128203)
pub fn downgrade(s: Self) -> RwLockReadGuard<'a, T>
rwlock_downgrade
#128203)Downgrades a write-locked RwLockWriteGuard
into a read-locked RwLockReadGuard
.
This method will atomically change the state of the RwLock
from exclusive mode into
shared mode. This means that it is impossible for a writing thread to get in between a
thread calling downgrade
and the same thread reading whatever it wrote while it had the
RwLock
in write mode.
Note that since we have the RwLockWriteGuard
, we know that the RwLock
is already
locked for writing, so this method cannot fail.
§Example
#![feature(rwlock_downgrade)]
use std::sync::{Arc, RwLock, RwLockWriteGuard};
// The inner value starts as 0.
let rw = Arc::new(RwLock::new(0));
// Put the lock in write mode.
let mut main_write_guard = rw.write().unwrap();
let evil = rw.clone();
let handle = std::thread::spawn(move || {
// This will not return until the main thread drops the `main_read_guard`.
let mut evil_guard = evil.write().unwrap();
assert_eq!(*evil_guard, 1);
*evil_guard = 2;
});
// After spawning the writer thread, set the inner value to 1.
*main_write_guard = 1;
// Atomically downgrade the write guard into a read guard.
let main_read_guard = RwLockWriteGuard::downgrade(main_write_guard);
// Since `downgrade` is atomic, the writer thread cannot have set the inner value to 2.
assert_eq!(*main_read_guard, 1, "`downgrade` was not atomic");
// Clean up everything now
drop(main_read_guard);
handle.join().unwrap();
let final_check = rw.read().unwrap();
assert_eq!(*final_check, 2);