@@ -282,7 +282,7 @@ where
282282 }
283283}
284284
285- impl < ' py , T > PyEq < Bound < ' py , PyAny > > for T
285+ impl < T > PyEq < Bound < ' _ , PyAny > > for T
286286where
287287 for < ' p > T : PyEq < T > + Clone + FromPyObject < ' p > ,
288288{
@@ -1031,7 +1031,7 @@ impl PyHash for EdgeList {
10311031 }
10321032}
10331033
1034- impl < ' py > PyEq < Bound < ' py , PyAny > > for EdgeList {
1034+ impl PyEq < Bound < ' _ , PyAny > > for EdgeList {
10351035 #[ inline]
10361036 fn eq ( & self , other : & Bound < PyAny > , py : Python ) -> PyResult < bool > {
10371037 PyEq :: eq ( & self . edges , other, py)
@@ -1119,7 +1119,7 @@ impl PyHash for IndexPartitionBlock {
11191119 }
11201120}
11211121
1122- impl < ' py > PyEq < Bound < ' py , PyAny > > for IndexPartitionBlock {
1122+ impl PyEq < Bound < ' _ , PyAny > > for IndexPartitionBlock {
11231123 #[ inline]
11241124 fn eq ( & self , other : & Bound < PyAny > , py : Python ) -> PyResult < bool > {
11251125 PyEq :: eq ( & self . block , other, py)
@@ -1522,7 +1522,7 @@ impl PyHash for PathMapping {
15221522 }
15231523}
15241524
1525- impl < ' py > PyEq < Bound < ' py , PyAny > > for PathMapping {
1525+ impl PyEq < Bound < ' _ , PyAny > > for PathMapping {
15261526 #[ inline]
15271527 fn eq ( & self , other : & Bound < PyAny > , py : Python ) -> PyResult < bool > {
15281528 PyEq :: eq ( & self . paths , other, py)
@@ -1686,7 +1686,7 @@ impl PyHash for MultiplePathMapping {
16861686 }
16871687}
16881688
1689- impl < ' py > PyEq < Bound < ' py , PyAny > > for MultiplePathMapping {
1689+ impl PyEq < Bound < ' _ , PyAny > > for MultiplePathMapping {
16901690 #[ inline]
16911691 fn eq ( & self , other : & Bound < PyAny > , py : Python ) -> PyResult < bool > {
16921692 PyEq :: eq ( & self . paths , other, py)
@@ -1750,7 +1750,7 @@ impl PyHash for PathLengthMapping {
17501750 }
17511751}
17521752
1753- impl < ' py > PyEq < Bound < ' py , PyAny > > for PathLengthMapping {
1753+ impl PyEq < Bound < ' _ , PyAny > > for PathLengthMapping {
17541754 #[ inline]
17551755 fn eq ( & self , other : & Bound < PyAny > , py : Python ) -> PyResult < bool > {
17561756 PyEq :: eq ( & self . path_lengths , other, py)
0 commit comments