Remove a lifetime parameter that is no longer needed.

This commit is contained in:
KAMADA Ken'ichi 2019-12-22 21:08:20 +09:00
parent f90f5d885a
commit 5d5d995907
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ impl Reader {
/// Returns a slice of Exif fields.
#[inline]
pub fn fields<'a>(&'a self) -> impl ExactSizeIterator<Item = &'a Field> {
pub fn fields(&self) -> impl ExactSizeIterator<Item = &Field> {
self.entries.iter()
.map(move |e| e.ref_field(&self.buf, self.little_endian))
}