@@ -51,7 +51,7 @@ impl File {
5151 }
5252}
5353
54- impl < ' a > metadata:: File < ' a > for File {
54+ impl metadata:: File < ' _ > for File {
5555 type Properties = FileProps ;
5656 type Tests = Tests ;
5757
@@ -679,7 +679,7 @@ impl Test {
679679 }
680680}
681681
682- impl < ' a > metadata:: Test < ' a > for Test {
682+ impl metadata:: Test < ' _ > for Test {
683683 type Properties = TestProps < TestOutcome > ;
684684 type Subtests = Subtests ;
685685
@@ -721,7 +721,7 @@ pub struct Subtest {
721721 pub properties : TestProps < SubtestOutcome > ,
722722}
723723
724- impl < ' a > metadata:: Subtest < ' a > for Subtest {
724+ impl metadata:: Subtest < ' _ > for Subtest {
725725 type Properties = TestProps < SubtestOutcome > ;
726726
727727 fn new ( _span : SimpleSpan , properties : Self :: Properties ) -> Self {
@@ -926,11 +926,11 @@ where
926926 pub tags : Option < ExpandedPropertyValue < Vec < String > > > ,
927927}
928928
929- impl < ' a , Out > TestProps < Out >
929+ impl < Out > TestProps < Out >
930930where
931931 Out : Clone + Default + EnumSetType + Eq + PartialEq + Hash ,
932932{
933- fn insert ( & mut self , prop : TestProp < Out > , emitter : & mut Emitter < Rich < ' a , char > > ) {
933+ fn insert ( & mut self , prop : TestProp < Out > , emitter : & mut Emitter < Rich < ' _ , char > > ) {
934934 let Self {
935935 is_disabled,
936936 expected,
0 commit comments