pub unsafe trait RawRwLockDowngrade: RawRwLock {
    fn downgrade(&self);
}
Expand description

Additional methods for RwLocks which support atomically downgrading an exclusive lock to a shared lock.

Required Methods§

Atomically downgrades an exclusive lock into a shared lock without allowing any thread to take an exclusive lock in the meantime.

Implementors§