pub trait SimpleClock {
// Required method
fn now_us(&self) -> u64;
}Expand description
Provides an abstraction for hardware-specific clocks with the microsecond precision.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".