This project is a basic implementation of a timer in rust made to be lightweight and accurate.
Initialize the timer with
let timer = timer:Timer::new();
Then to get the time
let time = timer.get_time(duration_type: DurationType);
This returns a u128
duration_type can be one of the following:
timer::DurationType::Seconds
timer::DurationType::Milliseconds
timer::DurationType::Microseconds
timer::DurationType::Nanoseconds
rust
fn main() {
let timer = timer:Timer::new();
std::thread::sleep(std::time::Duration::new(5, 0));
let time = timer.get_time(timer::DurationType::milliseconds);
}