pub trait InstanceEvents<T: Instance> {
// Required method
unsafe fn handle_instance_events();
}Expand description
Instance-level interrupt handling for a filter marker. Flt0 performs the
real handling; the other markers yield no-ops.
Required Methods§
Sourceunsafe fn handle_instance_events()
unsafe fn handle_instance_events()
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".