@@ -290,7 +290,7 @@ where
290290
291291struct HexBytes < ' a > ( & ' a [ u8 ] ) ;
292292
293- impl < ' a > fmt:: Debug for HexBytes < ' a > {
293+ impl fmt:: Debug for HexBytes < ' _ > {
294294 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
295295 f. write_char ( '[' ) ?;
296296
@@ -310,13 +310,13 @@ impl<'a> fmt::Debug for HexBytes<'a> {
310310
311311// ===== impl Visit =====
312312
313- impl < ' a , ' b > Visit for fmt:: DebugStruct < ' a , ' b > {
313+ impl Visit for fmt:: DebugStruct < ' _ , ' _ > {
314314 fn record_debug ( & mut self , field : & Field , value : & dyn fmt:: Debug ) {
315315 self . field ( field. name ( ) , value) ;
316316 }
317317}
318318
319- impl < ' a , ' b > Visit for fmt:: DebugMap < ' a , ' b > {
319+ impl Visit for fmt:: DebugMap < ' _ , ' _ > {
320320 fn record_debug ( & mut self , field : & Field , value : & dyn fmt:: Debug ) {
321321 self . entry ( & format_args ! ( "{}" , field) , value) ;
322322 }
@@ -544,9 +544,9 @@ where
544544 }
545545}
546546
547- impl < ' a > crate :: sealed:: Sealed for fmt:: Arguments < ' a > { }
547+ impl crate :: sealed:: Sealed for fmt:: Arguments < ' _ > { }
548548
549- impl < ' a > Value for fmt:: Arguments < ' a > {
549+ impl Value for fmt:: Arguments < ' _ > {
550550 fn record ( & self , key : & Field , visitor : & mut dyn Visit ) {
551551 visitor. record_debug ( key, self )
552552 }
@@ -818,7 +818,7 @@ impl FieldSet {
818818 }
819819}
820820
821- impl < ' a > IntoIterator for & ' a FieldSet {
821+ impl IntoIterator for & FieldSet {
822822 type IntoIter = Iter ;
823823 type Item = Field ;
824824 #[ inline]
@@ -897,7 +897,7 @@ impl Iterator for Iter {
897897
898898// ===== impl ValueSet =====
899899
900- impl < ' a > ValueSet < ' a > {
900+ impl ValueSet < ' _ > {
901901 /// Returns an [`Identifier`] that uniquely identifies the [`Callsite`]
902902 /// defining the fields this `ValueSet` refers to.
903903 ///
@@ -958,7 +958,7 @@ impl<'a> ValueSet<'a> {
958958 }
959959}
960960
961- impl < ' a > fmt:: Debug for ValueSet < ' a > {
961+ impl fmt:: Debug for ValueSet < ' _ > {
962962 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
963963 self . values
964964 . iter ( )
@@ -973,7 +973,7 @@ impl<'a> fmt::Debug for ValueSet<'a> {
973973 }
974974}
975975
976- impl < ' a > fmt:: Display for ValueSet < ' a > {
976+ impl fmt:: Display for ValueSet < ' _ > {
977977 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
978978 self . values
979979 . iter ( )
0 commit comments