@@ -310,7 +310,7 @@ where
310310 }
311311}
312312
313- impl < ' a , W , F > ser:: SerializeSeq for Compound < ' a , W , F >
313+ impl < W , F > ser:: SerializeSeq for Compound < ' _ , W , F >
314314where
315315 W : io:: Write ,
316316 F : Formatter ,
@@ -337,7 +337,7 @@ where
337337 }
338338}
339339
340- impl < ' a , W , F > ser:: SerializeTuple for Compound < ' a , W , F >
340+ impl < W , F > ser:: SerializeTuple for Compound < ' _ , W , F >
341341where
342342 W : io:: Write ,
343343 F : Formatter ,
@@ -357,7 +357,7 @@ where
357357 }
358358}
359359
360- impl < ' a , W , F > ser:: SerializeTupleStruct for Compound < ' a , W , F >
360+ impl < W , F > ser:: SerializeTupleStruct for Compound < ' _ , W , F >
361361where
362362 W : io:: Write ,
363363 F : Formatter ,
@@ -377,7 +377,7 @@ where
377377 }
378378}
379379
380- impl < ' a , W , F > ser:: SerializeTupleVariant for Compound < ' a , W , F >
380+ impl < W , F > ser:: SerializeTupleVariant for Compound < ' _ , W , F >
381381where
382382 W : io:: Write ,
383383 F : Formatter ,
@@ -401,7 +401,7 @@ where
401401 }
402402}
403403
404- impl < ' a , W , F > ser:: SerializeMap for Compound < ' a , W , F >
404+ impl < W , F > ser:: SerializeMap for Compound < ' _ , W , F >
405405where
406406 W : io:: Write ,
407407 F : Formatter ,
@@ -438,7 +438,7 @@ where
438438 }
439439}
440440
441- impl < ' a , W , F > ser:: SerializeStruct for Compound < ' a , W , F >
441+ impl < W , F > ser:: SerializeStruct for Compound < ' _ , W , F >
442442where
443443 W : io:: Write ,
444444 F : Formatter ,
@@ -458,7 +458,7 @@ where
458458 }
459459}
460460
461- impl < ' a , W , F > ser:: SerializeStructVariant for Compound < ' a , W , F >
461+ impl < W , F > ser:: SerializeStructVariant for Compound < ' _ , W , F >
462462where
463463 W : io:: Write ,
464464 F : Formatter ,
@@ -486,7 +486,7 @@ struct MapKeySerializer<'a, W: 'a, F: 'a> {
486486 ser : & ' a mut Serializer < W , F > ,
487487}
488488
489- impl < ' a , W , F > ser:: Serializer for MapKeySerializer < ' a , W , F >
489+ impl < W , F > ser:: Serializer for MapKeySerializer < ' _ , W , F >
490490where
491491 W : io:: Write ,
492492 F : Formatter ,
@@ -694,7 +694,7 @@ struct HjsonFormatter<'a> {
694694 braces_same_line : bool ,
695695}
696696
697- impl < ' a > Default for HjsonFormatter < ' a > {
697+ impl Default for HjsonFormatter < ' _ > {
698698 fn default ( ) -> Self {
699699 Self :: new ( )
700700 }
@@ -719,7 +719,7 @@ impl<'a> HjsonFormatter<'a> {
719719 }
720720}
721721
722- impl < ' a > Formatter for HjsonFormatter < ' a > {
722+ impl Formatter for HjsonFormatter < ' _ > {
723723 fn open < W > ( & mut self , writer : & mut W , ch : u8 ) -> Result < ( ) >
724724 where
725725 W : io:: Write ,
0 commit comments