#function #timing #execution-time #measure #measure-time #time

fun_time

fun_time is a simple Rust library that allows you to easily time your function calls with a simple attribute!

8 releases

0.3.4 Jan 18, 2024
0.3.3 Oct 14, 2023
0.3.0 Sep 21, 2023
0.2.1 Jan 2, 2023
0.1.0 Dec 23, 2022

#49 in Profiling

Download history 471/week @ 2023-12-22 505/week @ 2023-12-29 544/week @ 2024-01-05 777/week @ 2024-01-12 556/week @ 2024-01-19 548/week @ 2024-01-26 795/week @ 2024-02-02 1006/week @ 2024-02-09 1861/week @ 2024-02-16 1656/week @ 2024-02-23 878/week @ 2024-03-01 771/week @ 2024-03-08 784/week @ 2024-03-15 907/week @ 2024-03-22 783/week @ 2024-03-29 704/week @ 2024-04-05

3,265 downloads per month
Used in 6 crates (4 directly)

MIT license

10KB
137 lines

fun_time

Crates.io docs.rs

fun_time is a simple Rust library that allows you to easily time your function calls with a simple attribute!

Basic example

#[fun_time(message = "Heavy calculations on: {a_value}")]
fn some_cool_function(a_value: String) -> usize {
    a_value.len()
}

fn main() {
    let my_value_length = some_cool_function(String::from("Hello, world."));
}

The above will print Starting: Heavy calculations on: Hello, world. when the function starts, and Heavy calculations on: Hello, world.: Done in <duration> on completion.

Configuration

There are various attributes that allow you to configure the behavior of the fun_time attribute.

  • message allows you to set a message that will be printed when starting, and when done, the message is passed directly to the format! macro, so the arguments to the function can be used in the message (provided they have Debug or Display).
  • when allows you to configure when the timing should be collected. The possible values for this are: "always" which as the name might suggest will always collect timing information, and "debug" which will only collect when cfg!(debug_assertions) evaluates to true.
  • give_back is a flag that makes it so the wrapped function will now return the elapsed time instead of printing it. For this it modifies the return type from for example: -> &'a str to -> (&'a str, std::time::Duration). This allows you to handle printing or storing the timing information.
  • reporting (can not be used in combination with give_back) determines how the reporting is done. The possible options are: "println" which will print to stdout using println!. The "log" option is only available when the log feature is used. This will use the log crate with info! level logs by default, this can be affected by the level option.
  • level Set the level for the log messages, can by any option that can be parsed by the log::Level enum.

Reporting

The reported messages are formatted as follows:

Start message: "Starting: YOUR_MESSAGE_HERE"

Done message: "YOUR_MESSAGE_HERE: Done in DURATION"

Dependencies

~1.5MB
~40K SLoC