@@ -11,7 +11,7 @@ pub struct Writer<'a, W: Write<Error = E>, E: Error> {
1111 writer : & ' a mut W ,
1212}
1313
14- impl < ' a , W : Write < Error = E > , E : Error > Debug for Writer < ' a , W , E > {
14+ impl < W : Write < Error = E > , E : Error > Debug for Writer < ' _ , W , E > {
1515 fn fmt ( & self , f : & mut core:: fmt:: Formatter < ' _ > ) -> core:: fmt:: Result {
1616 f. debug_struct ( "Writer" )
1717 . field ( "last_bytes" , & self . last_bytes )
@@ -98,15 +98,15 @@ impl<'a, W: Write<Error = E>, E: Error> Writer<'a, W, E> {
9898 }
9999}
100100
101- impl < ' a , W : Write < Error = E > , E : Error > uWrite for Writer < ' a , W , E > {
101+ impl < W : Write < Error = E > , E : Error > uWrite for Writer < ' _ , W , E > {
102102 type Error = E ;
103103
104104 fn write_str ( & mut self , s : & str ) -> Result < ( ) , E > {
105105 self . write_str ( s)
106106 }
107107}
108108
109- impl < ' a , W : Write < Error = E > , E : Error > core:: fmt:: Write for Writer < ' a , W , E > {
109+ impl < W : Write < Error = E > , E : Error > core:: fmt:: Write for Writer < ' _ , W , E > {
110110 fn write_str ( & mut self , s : & str ) -> core:: fmt:: Result {
111111 self . write_str ( s) . map_err ( |_| core:: fmt:: Error ) ?;
112112 Ok ( ( ) )
0 commit comments