Struct grafix_toolbox::uses::Async::sync::RwLockUpgradableReadGuard [−]
pub struct RwLockUpgradableReadGuard<'a, T> where
T: ?Sized, { /* fields omitted */ }Expand description
A guard that releases the upgradable read lock when dropped.
Implementations
impl<'a, T> RwLockUpgradableReadGuard<'a, T> where
T: ?Sized,
impl<'a, T> RwLockUpgradableReadGuard<'a, T> where
T: ?Sized, pub fn downgrade(
guard: RwLockUpgradableReadGuard<'a, T>
) -> RwLockReadGuard<'a, T>
pub fn downgrade(
guard: RwLockUpgradableReadGuard<'a, T>
) -> 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());
pub fn try_upgrade(
guard: RwLockUpgradableReadGuard<'a, T>
) -> Result<RwLockWriteGuard<'a, T>, RwLockUpgradableReadGuard<'a, T>>
pub fn try_upgrade(
guard: RwLockUpgradableReadGuard<'a, T>
) -> Result<RwLockWriteGuard<'a, T>, RwLockUpgradableReadGuard<'a, T>>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();
pub async fn upgrade(
guard: RwLockUpgradableReadGuard<'a, T>
) -> RwLockWriteGuard<'a, T>
pub async fn upgrade(
guard: RwLockUpgradableReadGuard<'a, T>
) -> RwLockWriteGuard<'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;
Trait Implementations
impl<'_, T> Debug for RwLockUpgradableReadGuard<'_, T> where
T: Debug + ?Sized,
impl<'_, T> Debug for RwLockUpgradableReadGuard<'_, T> where
T: Debug + ?Sized, impl<'_, T> Deref for RwLockUpgradableReadGuard<'_, T> where
T: ?Sized,
impl<'_, T> Deref for RwLockUpgradableReadGuard<'_, T> where
T: ?Sized, impl<'_, T> Display for RwLockUpgradableReadGuard<'_, T> where
T: Display + ?Sized,
impl<'_, T> Display for RwLockUpgradableReadGuard<'_, T> where
T: Display + ?Sized, impl<'_, T> Send for RwLockUpgradableReadGuard<'_, T> where
T: Send + Sync + ?Sized, impl<'_, T> Sync for RwLockUpgradableReadGuard<'_, T> where
T: Sync + ?Sized, 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
Mutably borrows from an owned value. Read more
type Output = T
type Output = TShould always be Self
The inverse inclusion map: attempts to construct self from the equivalent element of its
superset. Read more
pub fn is_in_subset(&self) -> bool
pub fn is_in_subset(&self) -> boolChecks if self is actually part of its subset T (and can be converted to it).
pub fn to_subset_unchecked(&self) -> SS
pub fn to_subset_unchecked(&self) -> SSUse with care! Same as self.to_subset but without any property checks. Always succeeds.
pub fn from_subset(element: &SS) -> SP
pub fn from_subset(element: &SS) -> SPThe inclusion map: converts self to the equivalent element of its superset.
pub fn vzip(self) -> V