@@ -62,7 +62,7 @@ pub struct Read<'a, S: ?Sized, B> {
6262 buf : & ' a mut B ,
6363}
6464
65- impl < ' a , S : ?Sized , B > Future for Read < ' a , S , B >
65+ impl < S : ?Sized , B > Future for Read < ' _ , S , B >
6666where
6767 S : Socket ,
6868 B : ReadBuf ,
@@ -90,7 +90,7 @@ pub struct Write<'a, S: ?Sized> {
9090 buf : & ' a [ u8 ] ,
9191}
9292
93- impl < ' a , S : ?Sized > Future for Write < ' a , S >
93+ impl < S : ?Sized > Future for Write < ' _ , S >
9494where
9595 S : Socket ,
9696{
@@ -116,7 +116,7 @@ pub struct Flush<'a, S: ?Sized> {
116116 socket : & ' a mut S ,
117117}
118118
119- impl < ' a , S : Socket + ?Sized > Future for Flush < ' a , S > {
119+ impl < S : Socket + ?Sized > Future for Flush < ' _ , S > {
120120 type Output = io:: Result < ( ) > ;
121121
122122 fn poll ( mut self : Pin < & mut Self > , cx : & mut Context < ' _ > ) -> Poll < Self :: Output > {
@@ -128,7 +128,7 @@ pub struct Shutdown<'a, S: ?Sized> {
128128 socket : & ' a mut S ,
129129}
130130
131- impl < ' a , S : ?Sized > Future for Shutdown < ' a , S >
131+ impl < S : ?Sized > Future for Shutdown < ' _ , S >
132132where
133133 S : Socket ,
134134{
0 commit comments