Trait StdRwLockExt

Source
pub trait StdRwLockExt<T> {
    // Required methods
    fn read_ignore(&self) -> RwLockReadGuard<'_, T>;
    fn write_ignore(&self) -> RwLockWriteGuard<'_, T>;
}

Required Methods§

Implementations on Foreign Types§

Source§

impl<T> StdRwLockExt<T> for RwLock<T>

Implementors§