Struct async_lock::RwLockUpgradableReadGuard
source · pub struct RwLockUpgradableReadGuard<'a, T: ?Sized> { /* private fields */ }
Expand description
A guard that releases the upgradable read lock when dropped.
Implementations§
source§impl<'a, T: ?Sized> RwLockUpgradableReadGuard<'a, T>
impl<'a, T: ?Sized> RwLockUpgradableReadGuard<'a, T>
sourcepub fn downgrade(guard: Self) -> RwLockReadGuard<'a, T>
pub fn downgrade(guard: Self) -> RwLockReadGuard<'a, T>
Downgrades into a regular reader guard.
Examples
use async_lock::{RwLock, RwLockUpgradableReadGuard};
let lock = RwLock::new(1);
let reader = lock.upgradable_read().await;
assert_eq!(*reader, 1);
assert!(lock.try_upgradable_read().is_none());
let reader = RwLockUpgradableReadGuard::downgrade(reader);
assert!(lock.try_upgradable_read().is_some());
sourcepub fn try_upgrade(guard: Self) -> Result<RwLockWriteGuard<'a, T>, Self>
pub fn try_upgrade(guard: Self) -> Result<RwLockWriteGuard<'a, T>, Self>
Attempts to upgrade into a write lock.
If a write lock could not be acquired at this time, then None
is returned. Otherwise,
an upgraded guard is returned that releases the write lock when dropped.
This function can only fail if there are other active read locks.
Examples
use async_lock::{RwLock, RwLockUpgradableReadGuard};
let lock = RwLock::new(1);
let reader = lock.upgradable_read().await;
assert_eq!(*reader, 1);
let reader2 = lock.read().await;
let reader = RwLockUpgradableReadGuard::try_upgrade(reader).unwrap_err();
drop(reader2);
let writer = RwLockUpgradableReadGuard::try_upgrade(reader).unwrap();
sourcepub fn upgrade(guard: Self) -> Upgrade<'a, T> ⓘ
pub fn upgrade(guard: Self) -> Upgrade<'a, T> ⓘ
Upgrades into a write lock.
Examples
use async_lock::{RwLock, RwLockUpgradableReadGuard};
let lock = RwLock::new(1);
let reader = lock.upgradable_read().await;
assert_eq!(*reader, 1);
let mut writer = RwLockUpgradableReadGuard::upgrade(reader).await;
*writer = 2;
sourcepub fn upgrade_blocking(guard: Self) -> RwLockWriteGuard<'a, T>
pub fn upgrade_blocking(guard: Self) -> RwLockWriteGuard<'a, T>
Upgrades into a write lock.
Blocking
This function will block the current thread until it is able to acquire the write lock.
Examples
use async_lock::{RwLock, RwLockUpgradableReadGuard};
let lock = RwLock::new(1);
let reader = lock.upgradable_read_blocking();
assert_eq!(*reader, 1);
let mut writer = RwLockUpgradableReadGuard::upgrade_blocking(reader);
*writer = 2;
Trait Implementations§
source§impl<T: ?Sized> Deref for RwLockUpgradableReadGuard<'_, T>
impl<T: ?Sized> Deref for RwLockUpgradableReadGuard<'_, T>
source§impl<'a, T: ?Sized> Drop for RwLockUpgradableReadGuard<'a, T>
impl<'a, T: ?Sized> Drop for RwLockUpgradableReadGuard<'a, T>
impl<T: Send + Sync + ?Sized> Send for RwLockUpgradableReadGuard<'_, T>
impl<T: Sync + ?Sized> Sync for RwLockUpgradableReadGuard<'_, T>
Auto Trait Implementations§
impl<'a, T> !RefUnwindSafe for RwLockUpgradableReadGuard<'a, T>
impl<'a, T: ?Sized> Unpin for RwLockUpgradableReadGuard<'a, T>
impl<'a, T> !UnwindSafe for RwLockUpgradableReadGuard<'a, T>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more