Trait ClockClient
pub trait ClockClient {
// Required method
fn event(&self);
}Required Methods§
fn event(&self)
fn event(&self)
All clock interrupts are control signals, e.g., when a clock has started etc. We don’t actually handle any of them for now, but keep this trait in place for if we do need to in the future.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".