File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ impl<'a> Iterator for ElfSectionIter<'a> {
134
134
}
135
135
}
136
136
137
- impl < ' a > Debug for ElfSectionIter < ' a > {
137
+ impl Debug for ElfSectionIter < ' _ > {
138
138
fn fmt ( & self , f : & mut Formatter < ' _ > ) -> core:: fmt:: Result {
139
139
let mut debug = f. debug_list ( ) ;
140
140
self . clone ( ) . for_each ( |ref e| {
@@ -183,7 +183,7 @@ struct ElfSectionInner64 {
183
183
entry_size : u64 ,
184
184
}
185
185
186
- impl < ' a > ElfSection < ' a > {
186
+ impl ElfSection < ' _ > {
187
187
/// Get the section type as a `ElfSectionType` enum variant.
188
188
#[ must_use]
189
189
pub fn section_type ( & self ) -> ElfSectionType {
Original file line number Diff line number Diff line change @@ -319,7 +319,7 @@ pub enum FramebufferType<'a> {
319
319
Text ,
320
320
}
321
321
322
- impl < ' a > FramebufferType < ' a > {
322
+ impl FramebufferType < ' _ > {
323
323
#[ must_use]
324
324
#[ cfg( feature = "builder" ) ]
325
325
const fn id ( & self ) -> FramebufferTypeId {
Original file line number Diff line number Diff line change @@ -455,13 +455,13 @@ impl<'a> Iterator for EFIMemoryAreaIter<'a> {
455
455
}
456
456
}
457
457
458
- impl < ' a > ExactSizeIterator for EFIMemoryAreaIter < ' a > {
458
+ impl ExactSizeIterator for EFIMemoryAreaIter < ' _ > {
459
459
fn len ( & self ) -> usize {
460
460
self . entries
461
461
}
462
462
}
463
463
464
- impl < ' a > Debug for EFIMemoryAreaIter < ' a > {
464
+ impl Debug for EFIMemoryAreaIter < ' _ > {
465
465
fn fmt ( & self , f : & mut Formatter < ' _ > ) -> core:: fmt:: Result {
466
466
let mut debug = f. debug_list ( ) ;
467
467
let iter = self . clone ( ) ;
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ impl<'a> Iterator for ModuleIter<'a> {
123
123
}
124
124
}
125
125
126
- impl < ' a > Debug for ModuleIter < ' a > {
126
+ impl Debug for ModuleIter < ' _ > {
127
127
fn fmt ( & self , f : & mut Formatter < ' _ > ) -> core:: fmt:: Result {
128
128
let mut list = f. debug_list ( ) ;
129
129
self . clone ( ) . for_each ( |tag| {
You can’t perform that action at this time.
0 commit comments