@@ -137,7 +137,7 @@ impl<'a, T: Bindable> Bound<'a, T> {
137137 }
138138}
139139
140- impl < ' a > fmt:: Display for Bound < ' a , Flag > {
140+ impl fmt:: Display for Bound < ' _ , Flag > {
141141 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> Result < ( ) , std:: fmt:: Error > {
142142 write ! (
143143 f,
@@ -152,7 +152,7 @@ impl<'a> fmt::Display for Bound<'a, Flag> {
152152 }
153153}
154154
155- impl < ' a > fmt:: Display for Bound < ' a , Int > {
155+ impl fmt:: Display for Bound < ' _ , Int > {
156156 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> Result < ( ) , std:: fmt:: Error > {
157157 write ! (
158158 f,
@@ -163,7 +163,7 @@ impl<'a> fmt::Display for Bound<'a, Int> {
163163 }
164164}
165165
166- impl < ' a , B , R , T : From < u32 > + From < bool > > Facter < T > for Bound < ' a , B >
166+ impl < B , R , T : From < u32 > + From < bool > > Facter < T > for Bound < ' _ , B >
167167where
168168 R : Default + Into < T > ,
169169 B : Bindable < Rep = R > ,
@@ -176,7 +176,7 @@ where
176176 }
177177}
178178
179- impl < ' a > fmt:: Display for Bound < ' a , X86Model > {
179+ impl fmt:: Display for Bound < ' _ , X86Model > {
180180 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> Result < ( ) , std:: fmt:: Error > {
181181 write ! (
182182 f,
@@ -187,7 +187,7 @@ impl<'a> fmt::Display for Bound<'a, X86Model> {
187187 }
188188}
189189
190- impl < ' a > fmt:: Display for Bound < ' a , X86Family > {
190+ impl fmt:: Display for Bound < ' _ , X86Family > {
191191 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> Result < ( ) , std:: fmt:: Error > {
192192 write ! (
193193 f,
@@ -225,7 +225,7 @@ impl<'a> BoundField<'a> {
225225 }
226226}
227227
228- impl < ' a > fmt:: Display for BoundField < ' a > {
228+ impl fmt:: Display for BoundField < ' _ > {
229229 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> Result < ( ) , std:: fmt:: Error > {
230230 match self {
231231 Self :: Int ( bound) => bound. fmt ( f) ,
@@ -236,7 +236,7 @@ impl<'a> fmt::Display for BoundField<'a> {
236236 }
237237}
238238
239- impl < ' a , T : From < bool > + From < u32 > > Facter < T > for BoundField < ' a > {
239+ impl < T : From < bool > + From < u32 > > Facter < T > for BoundField < ' _ > {
240240 fn collect_fact ( & self ) -> GenericFact < T > {
241241 match self {
242242 Self :: Int ( bound) => bound. collect_fact ( ) ,
0 commit comments