11
11
use cmp:: Ordering ;
12
12
use libc;
13
13
use time:: Duration ;
14
+ use core:: hash:: { Hash , Hasher } ;
14
15
15
16
pub use self :: inner:: { Instant , SystemTime , UNIX_EPOCH } ;
16
17
use convert:: TryInto ;
@@ -111,6 +112,13 @@ impl Ord for Timespec {
111
112
}
112
113
}
113
114
115
+ impl Hash for Timespec {
116
+ fn hash < H : Hasher > ( & self , state : & mut H ) {
117
+ self . t . tv_sec . hash ( state) ;
118
+ self . t . tv_nsec . hash ( state) ;
119
+ }
120
+ }
121
+
114
122
#[ cfg( any( target_os = "macos" , target_os = "ios" ) ) ]
115
123
mod inner {
116
124
use fmt;
@@ -123,12 +131,12 @@ mod inner {
123
131
use super :: NSEC_PER_SEC ;
124
132
use super :: Timespec ;
125
133
126
- #[ derive( Copy , Clone , PartialEq , Eq , PartialOrd , Ord , Debug ) ]
134
+ #[ derive( Copy , Clone , PartialEq , Eq , PartialOrd , Ord , Debug , Hash ) ]
127
135
pub struct Instant {
128
136
t : u64
129
137
}
130
138
131
- #[ derive( Copy , Clone , PartialEq , Eq , PartialOrd , Ord ) ]
139
+ #[ derive( Copy , Clone , PartialEq , Eq , PartialOrd , Ord , Hash ) ]
132
140
pub struct SystemTime {
133
141
t : Timespec ,
134
142
}
@@ -255,12 +263,12 @@ mod inner {
255
263
256
264
use super :: Timespec ;
257
265
258
- #[ derive( Copy , Clone , PartialEq , Eq , PartialOrd , Ord ) ]
266
+ #[ derive( Copy , Clone , PartialEq , Eq , PartialOrd , Ord , Hash ) ]
259
267
pub struct Instant {
260
268
t : Timespec ,
261
269
}
262
270
263
- #[ derive( Copy , Clone , PartialEq , Eq , PartialOrd , Ord ) ]
271
+ #[ derive( Copy , Clone , PartialEq , Eq , PartialOrd , Ord , Hash ) ]
264
272
pub struct SystemTime {
265
273
t : Timespec ,
266
274
}
0 commit comments