simple_func_timer

Crates.iosimple_func_timer
lib.rssimple_func_timer
version0.1.0
sourcesrc
created_at2021-05-09 09:01:55.048595
updated_at2021-05-09 09:01:55.048595
descriptionSimple macro to measure the function execution time in Rust
homepagehttps://github.com/mkinoshi/simple_func_timer
repositoryhttps://github.com/mkinoshi/simple_func_timer
max_upload_size
id395128
size13,685
makoto (mkinoshi)

documentation

README

simple_func_timer

Tiny macro to measure the function execution time in Rust. It uses log crate, so the consuming code can handle the log easily.

Examples

You can measure the execution time of a function in the following way. Your client code needs to consume the log.

#[timer(unit = "ns", log = "info")]
fn my_function() {
}

// It measures the execution time in milliseconds and generate `debug` level logs by default.
#[timer]
fn my_function() {
}

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate. Enjoy!

License

MIT

Commit count: 13

cargo fmt