pub unsafe trait RawRwLockRecursiveTimed: RawRwLockRecursive + RawRwLockTimed {
    fn try_lock_shared_recursive_for(&self, timeout: Self::Duration) -> bool;
    fn try_lock_shared_recursive_until(&self, timeout: Self::Instant) -> bool;
}
Expand description

Additional methods for RwLocks which support recursive read locks and timeouts.

Required Methods§

Attempts to acquire a shared lock until a timeout is reached, without deadlocking in case of a recursive lock.

Attempts to acquire a shared lock until a timeout is reached, without deadlocking in case of a recursive lock.

Implementors§