#timing #stopwatch #split #clear #rewrite #original #time

stopwatch2

A stopwatch library for timing things. A rewrite and simplification of the original stopwatch crate.

1 stable release

2.0.0 Apr 30, 2021

#327 in Date and time

Download history 216/week @ 2024-07-21 331/week @ 2024-07-28 233/week @ 2024-08-04 243/week @ 2024-08-11 450/week @ 2024-08-18 206/week @ 2024-08-25 279/week @ 2024-09-01 194/week @ 2024-09-08 224/week @ 2024-09-15 269/week @ 2024-09-22 264/week @ 2024-09-29 170/week @ 2024-10-06 536/week @ 2024-10-13 621/week @ 2024-10-20 408/week @ 2024-10-27 209/week @ 2024-11-03

1,780 downloads per month
Used in 6 crates (5 directly)

MIT license

10KB
159 lines

Stopwatch2

Stopwatch V2

Support an Open Source Developer! ♥️
Become a patron

Read the documentation.

This crate is a simplified version of the work of ellisonch.

Features

  • Adds a simple stopwatch.
  • Can use multiple splits, even with pauses between them!
  • Simple to use with clear documentation.

Usage

Add the following to you Cargo.toml file:

stopwatch2 = "*"

Use the stopwatch like so:

use stopwatch2::*;

fn main() {
    let mut s = Stopwatch::default();
    s.start(); // Starts the stopwatch.
    s.start(); // Creates a new time span, which are commonly called "splits".
    s.stop(); // Stops the stopwatch.
    println!("{}", s); // Prints the total time.
    println!("{:?}", s); // Prints the different time spans as debug information.
    let total_time = s.elapsed(); // returns the total time as a Duration.
    for span in &s.spans {
        // Prints all contained time spans.
        println!("{:?} -> {:?}", span.start, span.stop);
    }
    s.spans.clear(); // Reset the stopwatch.
    println!("{}", s); // Prints the total time.
    println!("{:?}", s); // Prints the different time spans as debug information.
}

Maintainer Information

  • Maintainer: Jojolepro
  • Contact: jojolepro [at] jojolepro [dot] com
  • Website: jojolepro.com
  • Patreon: patreon

No runtime deps