pub trait IsntRwLockExt<T: ?Sized>: Sealed<T> {
// Required method
fn is_not_poisoned(&self) -> bool;
}Expand description
Extension for RwLock
Required Methods§
Sourcefn is_not_poisoned(&self) -> bool
fn is_not_poisoned(&self) -> bool
The negation of is_poisoned
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".