#measure #time #elapsed #wall #humantime

measure_time

Provices macros to measure the time until end of scope

16 unstable releases (5 breaking)

Uses old Rust 2015

0.8.2 Apr 2, 2022
0.8.0 Nov 4, 2021
0.7.0 Jun 30, 2021
0.6.0 Jun 24, 2018
0.1.3 Jun 2, 2017

#11 in Profiling

Download history 47791/week @ 2023-08-18 73210/week @ 2023-08-25 60131/week @ 2023-09-01 94959/week @ 2023-09-08 85326/week @ 2023-09-15 77442/week @ 2023-09-22 97552/week @ 2023-09-29 101575/week @ 2023-10-06 92866/week @ 2023-10-13 95236/week @ 2023-10-20 107876/week @ 2023-10-27 100504/week @ 2023-11-03 110155/week @ 2023-11-10 42316/week @ 2023-11-17 31168/week @ 2023-11-24 25800/week @ 2023-12-01

230,235 downloads per month
Used in 92 crates (11 directly)

Unlicense

15KB
290 lines

Docs Crates.io

measure_time

The crate provides macros, which measure the time until end of scope and print the elapsed time in a human readable format.

This is done by creating an object, which measures the time. The time is printed when the object is dropped.

The logging behaviour is the same as other log macros like info!(..)

Installation

Simply add a corresponding entry to your Cargo.toml dependency list:

[dependencies]
measure_time = "0.8"

Examples

use measure_time::{info_time, debug_time, trace_time, error_time, print_time};
fn main() {
    info_time!("measure function");
    {
        debug_time!("{:?}", "measuring block");
        let mut sum = 0;
        for el in 0..50000 {
            sum+=el;
        }
        println!("{:?}", sum);
    }
    trace_time!("{:?}", "trace");
    print_time!("print");
    error_time!(target: "measure_time", "custom target");
}

Changelog

Version 0.4

Objects to measure time are only created when the log level is enabled, else None will be created

Version 0.4.2

Add error and warn levels

Version 0.5.0

Change time formatting for improved readability

Version 0.6.0

Behaviour is now the same as other log macros (eg. info!). Reexporting log crate macros via pub use. Previously all tracing was made to the measure_time target (e.g. RUST_LOG=measure_time=debug). This is now fixed. Added a small example (https://github.com/PSeitz/rust_measure_time/tree/master/measure_time_example).

Version 0.7.0

Support 2018 imports, with improved macro import hygiene.

Version 0.8.0

Fix human readable time, see https://github.com/PSeitz/rust_measure_time/commit/bd829342aaed87db84f49ee6f7f46749b8c8e2ca for details.

Version 0.8.1

Use wasm-compatible Instant https://github.com/PSeitz/rust_measure_time/issues/3

Dependencies

~0–1.4MB
~27K SLoC