1
0
Fork 0
mirror of synced 2024-05-01 02:54:05 +12:00
czkawka/src/common.rs
2020-08-31 19:37:30 +02:00

13 lines
356 B
Rust

use std::time::SystemTime;
pub struct Common();
impl Common {
pub fn print_time(start_time: SystemTime, end_time: SystemTime, function_name: String) {
println!(
"Execution of function \"{}\" took {:?}",
function_name,
end_time.duration_since(start_time).expect("Time cannot go reverse.")
);
}
}