We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f428f83 commit c03580dCopy full SHA for c03580d
1 file changed
src/lib.rs
@@ -157,15 +157,15 @@ where
157
}
158
159
/// Create a section header iterator.
160
- pub fn iter_section_headers(&self) -> IterSectionHeaders<DS> {
+ pub fn iter_section_headers(&self) -> IterSectionHeaders<'_, DS> {
161
IterSectionHeaders {
162
parent: self,
163
next_section: 0,
164
165
166
167
/// Create a program header iterator.
168
- pub fn iter_program_headers(&self) -> IterProgramHeaders<DS> {
+ pub fn iter_program_headers(&self) -> IterProgramHeaders<'_, DS> {
169
IterProgramHeaders {
170
171
next_program_header: 0,
0 commit comments