@@ -8,7 +8,7 @@ use std::sync::Mutex;
88
99use cfg_if:: cfg_if;
1010use futures:: future:: { self , FutureExt , TryFutureExt } ;
11- use futures:: io:: { AsyncSeek , Initializer } ;
11+ use futures:: io:: { AsyncRead , AsyncSeek , AsyncWrite , Initializer } ;
1212
1313use crate :: future:: Future ;
1414use crate :: io;
@@ -482,7 +482,7 @@ impl File {
482482 }
483483}
484484
485- impl futures :: io :: AsyncRead for File {
485+ impl AsyncRead for File {
486486 fn poll_read (
487487 self : Pin < & mut Self > ,
488488 cx : & mut Context < ' _ > ,
@@ -497,7 +497,7 @@ impl futures::io::AsyncRead for File {
497497 }
498498}
499499
500- impl futures :: io :: AsyncRead for & File {
500+ impl AsyncRead for & File {
501501 fn poll_read (
502502 mut self : Pin < & mut Self > ,
503503 cx : & mut Context < ' _ > ,
@@ -563,7 +563,7 @@ impl futures::io::AsyncRead for &File {
563563 }
564564}
565565
566- impl futures :: io :: AsyncWrite for File {
566+ impl AsyncWrite for File {
567567 fn poll_write (
568568 self : Pin < & mut Self > ,
569569 cx : & mut Context < ' _ > ,
@@ -581,7 +581,7 @@ impl futures::io::AsyncWrite for File {
581581 }
582582}
583583
584- impl futures :: io :: AsyncWrite for & File {
584+ impl AsyncWrite for & File {
585585 fn poll_write (
586586 mut self : Pin < & mut Self > ,
587587 cx : & mut Context < ' _ > ,
@@ -692,7 +692,7 @@ impl futures::io::AsyncWrite for &File {
692692 }
693693}
694694
695- impl futures :: io :: AsyncSeek for File {
695+ impl AsyncSeek for File {
696696 fn poll_seek (
697697 self : Pin < & mut Self > ,
698698 cx : & mut Context < ' _ > ,
0 commit comments