Trait simple_clock::SimpleClock[][src]

pub trait SimpleClock {
    fn now_us(&self) -> u64;
}
Expand description

Provides an abstraction for hardware-specific clocks with the microsecond precision.

Required methods

Returns an instant time in the microseconds.

Implementors