@@ -55,13 +55,13 @@ pub(crate) struct DisplayList<'a> {
55
55
pub ( crate ) anonymized_line_numbers : bool ,
56
56
}
57
57
58
- impl < ' a > PartialEq for DisplayList < ' a > {
58
+ impl PartialEq for DisplayList < ' _ > {
59
59
fn eq ( & self , other : & Self ) -> bool {
60
60
self . body == other. body && self . anonymized_line_numbers == other. anonymized_line_numbers
61
61
}
62
62
}
63
63
64
- impl < ' a > fmt:: Debug for DisplayList < ' a > {
64
+ impl fmt:: Debug for DisplayList < ' _ > {
65
65
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
66
66
f. debug_struct ( "DisplayList" )
67
67
. field ( "body" , & self . body )
@@ -70,7 +70,7 @@ impl<'a> fmt::Debug for DisplayList<'a> {
70
70
}
71
71
}
72
72
73
- impl < ' a > Display for DisplayList < ' a > {
73
+ impl Display for DisplayList < ' _ > {
74
74
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
75
75
let lineno_width = self . body . iter ( ) . fold ( 0 , |max, set| {
76
76
set. display_lines . iter ( ) . fold ( max, |max, line| match line {
@@ -156,7 +156,7 @@ pub(crate) struct DisplaySet<'a> {
156
156
pub ( crate ) margin : Margin ,
157
157
}
158
158
159
- impl < ' a > DisplaySet < ' a > {
159
+ impl DisplaySet < ' _ > {
160
160
fn format_label (
161
161
& self ,
162
162
line_offset : usize ,
@@ -791,7 +791,7 @@ pub(crate) struct DisplaySourceAnnotation<'a> {
791
791
pub ( crate ) annotation_part : DisplayAnnotationPart ,
792
792
}
793
793
794
- impl < ' a > DisplaySourceAnnotation < ' a > {
794
+ impl DisplaySourceAnnotation < ' _ > {
795
795
fn has_label ( & self ) -> bool {
796
796
!self
797
797
. annotation
@@ -932,7 +932,7 @@ pub(crate) enum DisplayHeaderType {
932
932
933
933
struct CursorLines < ' a > ( & ' a str ) ;
934
934
935
- impl < ' a > CursorLines < ' a > {
935
+ impl CursorLines < ' _ > {
936
936
fn new ( src : & str ) -> CursorLines < ' _ > {
937
937
CursorLines ( src)
938
938
}
0 commit comments