instant/
native.rs

1pub type Instant = std::time::Instant;
2
3/// The current time, in milliseconds.
4#[cfg(feature = "now")]
5pub fn now() -> f64 {
6    time::precise_time_s() * 1000.0
7}