SimpleHighPrecisionClock
SimpleHighPrecisionClock is a high-precision time source that uses the CPU's Time Stamp Counter (TSC) to measure time elapsed since instantiation in nanoseconds.
This clock calibrates the TSC upon initialization, converting TSC ticks to nanoseconds without relying on the CPU frequency, ensuring greater precision and stability.
Example
let clock = new;
let time_ns = clock.now;
println!;