@@ -242,8 +242,8 @@ cfg_if! {
242
242
243
243
impl Eq for dirent { }
244
244
245
- impl std :: fmt:: Debug for dirent {
246
- fn fmt( & self , f: & mut std :: fmt:: Formatter ) -> std :: fmt:: Result {
245
+ impl :: fmt:: Debug for dirent {
246
+ fn fmt( & self , f: & mut :: fmt:: Formatter ) -> :: fmt:: Result {
247
247
f. debug_struct( "dirent" )
248
248
. field( "d_fileno" , & self . d_fileno)
249
249
. field( "d_off" , & self . d_off)
@@ -255,8 +255,8 @@ cfg_if! {
255
255
}
256
256
}
257
257
258
- impl std :: hash:: Hash for dirent {
259
- fn hash<H : std :: hash:: Hasher >( & self , state: & mut H ) {
258
+ impl :: hash:: Hash for dirent {
259
+ fn hash<H : :: hash:: Hasher >( & self , state: & mut H ) {
260
260
self . d_fileno. hash( state) ;
261
261
self . d_off. hash( state) ;
262
262
self . d_reclen. hash( state) ;
@@ -275,17 +275,17 @@ cfg_if! {
275
275
276
276
impl Eq for sockaddr_storage { }
277
277
278
- impl std :: fmt:: Debug for sockaddr_storage {
279
- fn fmt( & self , f: & mut std :: fmt:: Formatter ) -> std :: fmt:: Result {
278
+ impl :: fmt:: Debug for sockaddr_storage {
279
+ fn fmt( & self , f: & mut :: fmt:: Formatter ) -> :: fmt:: Result {
280
280
f. debug_struct( "sockaddr_storage" )
281
281
. field( "ss_len" , & self . ss_len)
282
282
. field( "ss_family" , & self . ss_family)
283
283
. finish( )
284
284
}
285
285
}
286
286
287
- impl std :: hash:: Hash for sockaddr_storage {
288
- fn hash<H : std :: hash:: Hasher >( & self , state: & mut H ) {
287
+ impl :: hash:: Hash for sockaddr_storage {
288
+ fn hash<H : :: hash:: Hasher >( & self , state: & mut H ) {
289
289
self . ss_len. hash( state) ;
290
290
self . ss_family. hash( state) ;
291
291
}
@@ -302,8 +302,8 @@ cfg_if! {
302
302
303
303
impl Eq for siginfo_t { }
304
304
305
- impl std :: fmt:: Debug for siginfo_t {
306
- fn fmt( & self , f: & mut std :: fmt:: Formatter ) -> std :: fmt:: Result {
305
+ impl :: fmt:: Debug for siginfo_t {
306
+ fn fmt( & self , f: & mut :: fmt:: Formatter ) -> :: fmt:: Result {
307
307
f. debug_struct( "siginfo_t" )
308
308
. field( "si_signo" , & self . si_signo)
309
309
. field( "si_code" , & self . si_code)
@@ -313,8 +313,8 @@ cfg_if! {
313
313
}
314
314
}
315
315
316
- impl std :: hash:: Hash for siginfo_t {
317
- fn hash<H : std :: hash:: Hasher >( & self , state: & mut H ) {
316
+ impl :: hash:: Hash for siginfo_t {
317
+ fn hash<H : :: hash:: Hasher >( & self , state: & mut H ) {
318
318
self . si_signo. hash( state) ;
319
319
self . si_code. hash( state) ;
320
320
self . si_errno. hash( state) ;
@@ -340,8 +340,8 @@ cfg_if! {
340
340
341
341
impl Eq for lastlog { }
342
342
343
- impl std :: fmt:: Debug for lastlog {
344
- fn fmt( & self , f: & mut std :: fmt:: Formatter ) -> std :: fmt:: Result {
343
+ impl :: fmt:: Debug for lastlog {
344
+ fn fmt( & self , f: & mut :: fmt:: Formatter ) -> :: fmt:: Result {
345
345
f. debug_struct( "lastlog" )
346
346
. field( "ll_time" , & self . ll_time)
347
347
// FIXME: .field("ll_line", &self.ll_line)
@@ -350,8 +350,8 @@ cfg_if! {
350
350
}
351
351
}
352
352
353
- impl std :: hash:: Hash for lastlog {
354
- fn hash<H : std :: hash:: Hasher >( & self , state: & mut H ) {
353
+ impl :: hash:: Hash for lastlog {
354
+ fn hash<H : :: hash:: Hasher >( & self , state: & mut H ) {
355
355
self . ll_time. hash( state) ;
356
356
self . ll_line. hash( state) ;
357
357
self . ll_host. hash( state) ;
@@ -381,8 +381,8 @@ cfg_if! {
381
381
382
382
impl Eq for utmp { }
383
383
384
- impl std :: fmt:: Debug for utmp {
385
- fn fmt( & self , f: & mut std :: fmt:: Formatter ) -> std :: fmt:: Result {
384
+ impl :: fmt:: Debug for utmp {
385
+ fn fmt( & self , f: & mut :: fmt:: Formatter ) -> :: fmt:: Result {
386
386
f. debug_struct( "utmp" )
387
387
// FIXME: .field("ut_line", &self.ut_line)
388
388
// FIXME: .field("ut_name", &self.ut_name)
@@ -392,8 +392,8 @@ cfg_if! {
392
392
}
393
393
}
394
394
395
- impl std :: hash:: Hash for utmp {
396
- fn hash<H : std :: hash:: Hasher >( & self , state: & mut H ) {
395
+ impl :: hash:: Hash for utmp {
396
+ fn hash<H : :: hash:: Hasher >( & self , state: & mut H ) {
397
397
self . ut_line. hash( state) ;
398
398
self . ut_name. hash( state) ;
399
399
self . ut_host. hash( state) ;
0 commit comments