fast_time 0.1.26

An efficient low-precision timestamp source suitable for high-frequency querying
Documentation
//! Example code for the `README.md` file.
//!
//! This contains the same code that appears in the `fast_time` package `README.md`.

fn main() {
    use std::time::{Duration, Instant};

    use fast_time::Clock;

    // Create a clock for efficient timestamp capture
    let mut clock = Clock::new();

    // Capture timestamps rapidly
    let start = clock.now();

    // Simulate some work
    std::thread::sleep(Duration::from_millis(10));

    let elapsed = start.elapsed(&mut clock);
    println!("Work completed in: {elapsed:?}");

    // High-frequency timestamp collection
    let mut timestamps = Vec::new();
    for _ in 0..1000 {
        timestamps.push(clock.now());
    }

    // Convert to std Instant for interoperability.
    let fast_instant = clock.now();
    let std_instant: Instant = fast_instant.into();

    println!("Collected {} timestamps", timestamps.len());
    println!("Converted instant: {std_instant:?}");
}