We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a73e1a1 + 965cd2a commit 2a98e68Copy full SHA for 2a98e68
src/table.rs
@@ -111,7 +111,7 @@ pub struct RuleInfo {
111
pub letters: Option<String>,
112
}
113
114
-impl<'_> From<line::Rule<'_>> for RuleInfo {
+impl<'line> From<line::Rule<'line>> for RuleInfo {
115
fn from(info: line::Rule) -> RuleInfo {
116
RuleInfo {
117
from_year: info.from_year,
@@ -183,7 +183,7 @@ pub struct ZoneInfo {
183
pub end_time: Option<ChangeTime>,
184
185
186
-impl<'_> From<line::ZoneInfo<'_>> for ZoneInfo {
+impl<'line> From<line::ZoneInfo<'line>> for ZoneInfo {
187
fn from(info: line::ZoneInfo) -> ZoneInfo {
188
ZoneInfo {
189
offset: info.utc_offset.as_seconds(),
0 commit comments