[−][src]Trait lock_api::RawRwLockRecursiveTimed
Additional methods for RwLocks which support recursive read locks and timeouts.
Required methods
fn try_lock_shared_recursive_for(&self, timeout: Self::Duration) -> bool
Attempts to acquire a shared lock until a timeout is reached, without deadlocking in case of a recursive lock.
fn try_lock_shared_recursive_until(&self, timeout: Self::Instant) -> bool
Attempts to acquire a shared lock until a timeout is reached, without deadlocking in case of a recursive lock.