File: native.rs

package info (click to toggle)
rust-instant 0.1.12-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 148 kB
  • sloc: makefile: 2
file content (9 lines) | stat: -rw-r--r-- 400 bytes parent folder | download | duplicates (18)
1
2
3
4
5
6
7
8
9
pub type Instant = std::time::Instant;
pub type SystemTime = std::time::SystemTime;

/// The current time, expressed in milliseconds since the Unix Epoch.
pub fn now() -> f64 {
    std::time::SystemTime::now().duration_since(std::time::SystemTime::UNIX_EPOCH)
                                .expect("System clock was before 1970.")
                                .as_secs_f64() * 1000.0
}