@@ -79,7 +79,7 @@ pub(super) struct SerdeEncoder<'a, ENC: Encoder> {
79
79
pub ( super ) enc : & ' a mut ENC ,
80
80
}
81
81
82
- impl < ' a , ENC > Serializer for SerdeEncoder < ' a , ENC >
82
+ impl < ENC > Serializer for SerdeEncoder < ' _ , ENC >
83
83
where
84
84
ENC : Encoder ,
85
85
{
@@ -286,7 +286,7 @@ where
286
286
287
287
type Compound < ' a , ENC > = SerdeEncoder < ' a , ENC > ;
288
288
289
- impl < ' a , ENC : Encoder > SerializeSeq for Compound < ' a , ENC > {
289
+ impl < ENC : Encoder > SerializeSeq for Compound < ' _ , ENC > {
290
290
type Ok = ( ) ;
291
291
type Error = EncodeError ;
292
292
@@ -302,7 +302,7 @@ impl<'a, ENC: Encoder> SerializeSeq for Compound<'a, ENC> {
302
302
}
303
303
}
304
304
305
- impl < ' a , ENC : Encoder > SerializeTuple for Compound < ' a , ENC > {
305
+ impl < ENC : Encoder > SerializeTuple for Compound < ' _ , ENC > {
306
306
type Ok = ( ) ;
307
307
type Error = EncodeError ;
308
308
@@ -318,7 +318,7 @@ impl<'a, ENC: Encoder> SerializeTuple for Compound<'a, ENC> {
318
318
}
319
319
}
320
320
321
- impl < ' a , ENC : Encoder > SerializeTupleStruct for Compound < ' a , ENC > {
321
+ impl < ENC : Encoder > SerializeTupleStruct for Compound < ' _ , ENC > {
322
322
type Ok = ( ) ;
323
323
type Error = EncodeError ;
324
324
@@ -334,7 +334,7 @@ impl<'a, ENC: Encoder> SerializeTupleStruct for Compound<'a, ENC> {
334
334
}
335
335
}
336
336
337
- impl < ' a , ENC : Encoder > SerializeTupleVariant for Compound < ' a , ENC > {
337
+ impl < ENC : Encoder > SerializeTupleVariant for Compound < ' _ , ENC > {
338
338
type Ok = ( ) ;
339
339
type Error = EncodeError ;
340
340
@@ -350,7 +350,7 @@ impl<'a, ENC: Encoder> SerializeTupleVariant for Compound<'a, ENC> {
350
350
}
351
351
}
352
352
353
- impl < ' a , ENC : Encoder > SerializeMap for Compound < ' a , ENC > {
353
+ impl < ENC : Encoder > SerializeMap for Compound < ' _ , ENC > {
354
354
type Ok = ( ) ;
355
355
type Error = EncodeError ;
356
356
@@ -373,7 +373,7 @@ impl<'a, ENC: Encoder> SerializeMap for Compound<'a, ENC> {
373
373
}
374
374
}
375
375
376
- impl < ' a , ENC : Encoder > SerializeStruct for Compound < ' a , ENC > {
376
+ impl < ENC : Encoder > SerializeStruct for Compound < ' _ , ENC > {
377
377
type Ok = ( ) ;
378
378
type Error = EncodeError ;
379
379
@@ -389,7 +389,7 @@ impl<'a, ENC: Encoder> SerializeStruct for Compound<'a, ENC> {
389
389
}
390
390
}
391
391
392
- impl < ' a , ENC : Encoder > SerializeStructVariant for Compound < ' a , ENC > {
392
+ impl < ENC : Encoder > SerializeStructVariant for Compound < ' _ , ENC > {
393
393
type Ok = ( ) ;
394
394
type Error = EncodeError ;
395
395
0 commit comments