@@ -39,7 +39,7 @@ fn make_site_table_row(table: &SiteTable, pos: tsk_id_t) -> Option<SiteTableRow>
3939pub ( crate ) type SiteTableRefIterator < ' a > = crate :: table_iterator:: TableIterator < & ' a SiteTable > ;
4040pub ( crate ) type SiteTableIterator = crate :: table_iterator:: TableIterator < SiteTable > ;
4141
42- impl < ' a > Iterator for SiteTableRefIterator < ' a > {
42+ impl Iterator for SiteTableRefIterator < ' _ > {
4343 type Item = SiteTableRow ;
4444
4545 fn next ( & mut self ) -> Option < Self :: Item > {
@@ -80,7 +80,7 @@ impl<'a> SiteTableRowView<'a> {
8080 }
8181}
8282
83- impl < ' a > PartialEq for SiteTableRowView < ' a > {
83+ impl PartialEq for SiteTableRowView < ' _ > {
8484 fn eq ( & self , other : & Self ) -> bool {
8585 self . id == other. id
8686 && crate :: util:: partial_cmp_equal ( & self . position , & other. position )
@@ -89,9 +89,9 @@ impl<'a> PartialEq for SiteTableRowView<'a> {
8989 }
9090}
9191
92- impl < ' a > Eq for SiteTableRowView < ' a > { }
92+ impl Eq for SiteTableRowView < ' _ > { }
9393
94- impl < ' a > PartialEq < SiteTableRow > for SiteTableRowView < ' a > {
94+ impl PartialEq < SiteTableRow > for SiteTableRowView < ' _ > {
9595 fn eq ( & self , other : & SiteTableRow ) -> bool {
9696 self . id == other. id
9797 && crate :: util:: partial_cmp_equal ( & self . position , & other. position )
@@ -109,7 +109,7 @@ impl PartialEq<SiteTableRowView<'_>> for SiteTableRow {
109109 }
110110}
111111
112- impl < ' a > streaming_iterator:: StreamingIterator for SiteTableRowView < ' a > {
112+ impl streaming_iterator:: StreamingIterator for SiteTableRowView < ' _ > {
113113 type Item = Self ;
114114
115115 row_lending_iterator_get ! ( ) ;
0 commit comments