We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41be93c commit 14ce536Copy full SHA for 14ce536
src/libstd/sys/windows/time.rs
@@ -11,6 +11,8 @@ const INTERVALS_PER_SEC: u64 = NANOS_PER_SEC / 100;
11
12
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Debug, Hash)]
13
pub struct Instant {
14
+ // This duration is relative to an arbitrary microsecond epoch
15
+ // from the winapi QueryPerformanceCounter function.
16
t: Duration,
17
}
18
0 commit comments