File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -379,7 +379,7 @@ struct ArrayAccess<'a, 'de: 'a> {
379
379
380
380
// `SeqAccess` is provided to the `Visitor` to give it the ability to iterate
381
381
// through elements of the sequence.
382
- impl < ' de , ' a > SeqAccess < ' de > for ArrayAccess < ' a , ' de > {
382
+ impl < ' de > SeqAccess < ' de > for ArrayAccess < ' _ , ' de > {
383
383
type Error = MaxMindDBError ;
384
384
385
385
fn next_element_seed < T > ( & mut self , seed : T ) -> DecodeResult < Option < T :: Value > >
@@ -404,7 +404,7 @@ struct MapAccessor<'a, 'de: 'a> {
404
404
405
405
// `MapAccess` is provided to the `Visitor` to give it the ability to iterate
406
406
// through entries of the map.
407
- impl < ' de , ' a > MapAccess < ' de > for MapAccessor < ' a , ' de > {
407
+ impl < ' de > MapAccess < ' de > for MapAccessor < ' _ , ' de > {
408
408
type Error = MaxMindDBError ;
409
409
410
410
fn next_key_seed < K > ( & mut self , seed : K ) -> DecodeResult < Option < K :: Value > >
You can’t perform that action at this time.
0 commit comments