@@ -54,13 +54,13 @@ impl<'a> Parameter<'a> {
54
54
}
55
55
}
56
56
57
- impl < ' a > fmt:: Display for Parameter < ' a > {
57
+ impl fmt:: Display for Parameter < ' _ > {
58
58
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
59
59
write ! ( f, "{}: {}" , self . 0 , self . 1 )
60
60
}
61
61
}
62
62
63
- impl < ' a > fmt:: Debug for Parameter < ' a > {
63
+ impl fmt:: Debug for Parameter < ' _ > {
64
64
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
65
65
write ! ( f, "({:?}, {})" , self . 0 , self . 1 )
66
66
}
@@ -86,13 +86,13 @@ impl<'a> Child<'a> {
86
86
}
87
87
}
88
88
89
- impl < ' a > fmt:: Display for Child < ' a > {
89
+ impl fmt:: Display for Child < ' _ > {
90
90
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
91
91
write ! ( f, "{}: {}" , self . 0 , self . 1 )
92
92
}
93
93
}
94
94
95
- impl < ' a > fmt:: Debug for Child < ' a > {
95
+ impl fmt:: Debug for Child < ' _ > {
96
96
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
97
97
write ! ( f, "({:?}, {})" , self . 0 , self . 1 )
98
98
}
@@ -150,7 +150,7 @@ impl<'a> Case<'a> {
150
150
}
151
151
}
152
152
153
- impl < ' a > fmt:: Debug for Case < ' a > {
153
+ impl fmt:: Debug for Case < ' _ > {
154
154
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
155
155
let predicate = if let Some ( ref predicate) = self . predicate {
156
156
format ! ( "Some({})" , predicate)
0 commit comments