Trait concurrency_traits::rw_lock::AsyncUpgradeRwLock[][src]

pub trait AsyncUpgradeRwLock<'a>: TryUpgradeRwLock<'a> where
    Self::ReadGuard: AsyncUpgradeReadGuard<'a, Item = Self::Item, WriteGuard = Self::WriteGuard>, 
{ }
Expand description

An async rwlock that has read guards that can be upgraded asynchronously

Implementors

impl<'a, T, R> AsyncUpgradeRwLock<'a> for CustomRwLock<T, R> where
    T: 'a + Send + Sync,
    R: RawAsyncUpgradeRwLock + 'a + Send + Sync
[src]