Skip to content

Commit d76e707

Browse files
committed
Clean up warnings for missing lifetimes
1 parent 0e85128 commit d76e707

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

parse-zoneinfo/src/structure.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ use crate::table::Table;
3737
/// Trait to put the `structure` method on Tables.
3838
pub trait Structure {
3939
/// Returns an iterator over the structure of this table.
40-
fn structure(&self) -> TableStructure;
40+
fn structure(&self) -> TableStructure<'_>;
4141
}
4242

4343
impl Structure for Table {
44-
fn structure(&self) -> TableStructure {
44+
fn structure(&self) -> TableStructure<'_> {
4545
let mut mappings = BTreeMap::new();
4646

4747
for key in self.zonesets.keys().chain(self.links.keys()) {

0 commit comments

Comments
 (0)