pub trait IsDisposed {
// Required method
fn is_disposed(&self) -> bool;
}Expand description
Checks whether a signal has already been disposed.
Required Methods§
Sourcefn is_disposed(&self) -> bool
fn is_disposed(&self) -> bool
If true, the signal cannot be accessed without a panic.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".