We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e85128 commit d76e707Copy full SHA for d76e707
parse-zoneinfo/src/structure.rs
@@ -37,11 +37,11 @@ use crate::table::Table;
37
/// Trait to put the `structure` method on Tables.
38
pub trait Structure {
39
/// Returns an iterator over the structure of this table.
40
- fn structure(&self) -> TableStructure;
+ fn structure(&self) -> TableStructure<'_>;
41
}
42
43
impl Structure for Table {
44
- fn structure(&self) -> TableStructure {
+ fn structure(&self) -> TableStructure<'_> {
45
let mut mappings = BTreeMap::new();
46
47
for key in self.zonesets.keys().chain(self.links.keys()) {
0 commit comments