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 theInstanttype from the standard library.let start = Instant::now(): creates an instance ofInstantwhich will be used to measure the elapsed time.let elapsed = start.elapsed(): calculates the elapsed time since thestartinstance was created.println!("Time elapsed in expensive_function() is: {:?}", elapsed): prints the elapsed time.
Helpful links
Related
More of Rust
- Regex example to match multiline string in Rust?
- How to map a Rust slice?
- How to push an element to a Rust slice?
- How to match whitespace with a regex in Rust?
- How to replace strings using Rust regex?
- How to create a HashMap of structs in Rust?
- How to sort a Rust HashMap?
- How to convert a u8 slice to a hex string in Rust?
- How to compile a regex in Rust?
- How to use regex captures in Rust?
See more codes...