@@ -41,7 +41,7 @@ impl<'a, 'b> JsValueDeserializer<'a, 'b> {
4141 }
4242}
4343
44- impl < ' de , ' a , ' b > Deserializer < ' de > for JsValueDeserializer < ' a , ' b > {
44+ impl < ' de > Deserializer < ' de > for JsValueDeserializer < ' _ , ' _ > {
4545 type Error = JsDeserializationError ;
4646
4747 fn deserialize_any < V > ( self , visitor : V ) -> Result < V :: Value , Self :: Error >
@@ -294,7 +294,7 @@ impl<'a, 'b> JsObjectDeserializer<'a, 'b> {
294294
295295// `MapAccess` is provided to the `Visitor` to give it the ability to iterate
296296// through entries of the map.
297- impl < ' de , ' a , ' b > MapAccess < ' de > for JsObjectDeserializer < ' a , ' b > {
297+ impl < ' de > MapAccess < ' de > for JsObjectDeserializer < ' _ , ' _ > {
298298 type Error = JsDeserializationError ;
299299
300300 fn next_key_seed < K > ( & mut self , seed : K ) -> Result < Option < K :: Value > , Self :: Error >
@@ -343,7 +343,7 @@ impl<'a, 'b> JsArrayDeserializer<'a, 'b> {
343343
344344// `SeqAccess` is provided to the `Visitor` to give it the ability to iterate
345345// through elements of the sequence.
346- impl < ' de , ' a , ' b > SeqAccess < ' de > for JsArrayDeserializer < ' a , ' b > {
346+ impl < ' de > SeqAccess < ' de > for JsArrayDeserializer < ' _ , ' _ > {
347347 type Error = JsDeserializationError ;
348348
349349 fn next_element_seed < T > ( & mut self , seed : T ) -> Result < Option < T :: Value > , Self :: Error >
@@ -381,7 +381,7 @@ impl<'a, 'b> JsEnumDeserializer<'a, 'b> {
381381
382382// `EnumAccess` is provided to the `Visitor` to give it the ability to determine
383383// which variant of the enum is supposed to be deserialized.
384- impl < ' de , ' a , ' b > EnumAccess < ' de > for JsEnumDeserializer < ' a , ' b > {
384+ impl < ' de > EnumAccess < ' de > for JsEnumDeserializer < ' _ , ' _ > {
385385 type Error = JsDeserializationError ;
386386 type Variant = Self ;
387387
@@ -394,7 +394,7 @@ impl<'de, 'a, 'b> EnumAccess<'de> for JsEnumDeserializer<'a, 'b> {
394394 }
395395}
396396
397- impl < ' de , ' a , ' b > VariantAccess < ' de > for JsEnumDeserializer < ' a , ' b > {
397+ impl < ' de > VariantAccess < ' de > for JsEnumDeserializer < ' _ , ' _ > {
398398 type Error = JsDeserializationError ;
399399
400400 // If the `Visitor` expected this variant to be a unit variant, the input
0 commit comments