rustHow to get execution time in Rust
Rust provides a number of ways to measure the execution time of a program.
The simplest way is to use the std::time::Instant
type from the standard library. This type provides a now()
method which returns an instance of Instant
that can be used to measure the elapsed time.
Example code
use std::time::Instant;
let start = Instant::now();
// code to measure
let elapsed = start.elapsed();
println!("Time elapsed in expensive_function() is: {:?}", elapsed);
Output example
Time elapsed in expensive_function() is: Duration { secs: 0, nanos: 54545 }
Code explanation
use std::time::Instant
: imports theInstant
type from the standard library.let start = Instant::now()
: creates an instance ofInstant
which will be used to measure the elapsed time.let elapsed = start.elapsed()
: calculates the elapsed time since thestart
instance was created.println!("Time elapsed in expensive_function() is: {:?}", elapsed)
: prints the elapsed time.
Helpful links
Related
- How to get time from milliseconds in Rust
- What type to use for datetime in Rust
- How to sleep in Rust
- Using now to get current time in Rust
- How to get current date in Rust
- How to add second to time in Rust
- How to add day to date in Rust
- How to convert timestamp to datetime in Rust
- How to convert datetime to timestamp in Rust
More of Rust
- How to split a string with Rust regex?
- How to match the end of a line in a Rust regex?
- How to escape parentheses in a Rust regex?
- How to use regex to match a group in Rust?
- How to use regex with bytes in Rust?
- How to use regex to match a double quote in Rust?
- How to add matrices in Rust?
- How to find the first match in a Rust regex?
- How to calculate the inverse of a matrix in Rust?
- Hashshet example in Rust
See more codes...