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.