pub trait Dispose {
// Required method
fn dispose(self);
}Expand description
Allows disposing an arena-allocated signal before its owner has been disposed.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".