@@ -91,20 +91,20 @@ pub struct CommentFrame<'a> {
9191 pub content : String ,
9292}
9393
94- impl < ' a > PartialEq for CommentFrame < ' a > {
94+ impl PartialEq for CommentFrame < ' _ > {
9595 fn eq ( & self , other : & Self ) -> bool {
9696 self . language == other. language && self . description == other. description
9797 }
9898}
9999
100- impl < ' a > Hash for CommentFrame < ' a > {
100+ impl Hash for CommentFrame < ' _ > {
101101 fn hash < H : Hasher > ( & self , state : & mut H ) {
102102 self . language . hash ( state) ;
103103 self . description . hash ( state) ;
104104 }
105105}
106106
107- impl < ' a > CommentFrame < ' a > {
107+ impl CommentFrame < ' _ > {
108108 const FRAME_ID : FrameId < ' static > = FrameId :: Valid ( Cow :: Borrowed ( "COMM" ) ) ;
109109
110110 /// Create a new [`CommentFrame`]
@@ -207,20 +207,20 @@ pub struct UnsynchronizedTextFrame<'a> {
207207 pub content : String ,
208208}
209209
210- impl < ' a > PartialEq for UnsynchronizedTextFrame < ' a > {
210+ impl PartialEq for UnsynchronizedTextFrame < ' _ > {
211211 fn eq ( & self , other : & Self ) -> bool {
212212 self . language == other. language && self . description == other. description
213213 }
214214}
215215
216- impl < ' a > Hash for UnsynchronizedTextFrame < ' a > {
216+ impl Hash for UnsynchronizedTextFrame < ' _ > {
217217 fn hash < H : Hasher > ( & self , state : & mut H ) {
218218 self . language . hash ( state) ;
219219 self . description . hash ( state) ;
220220 }
221221}
222222
223- impl < ' a > UnsynchronizedTextFrame < ' a > {
223+ impl UnsynchronizedTextFrame < ' _ > {
224224 const FRAME_ID : FrameId < ' static > = FrameId :: Valid ( Cow :: Borrowed ( "USLT" ) ) ;
225225
226226 /// Create a new [`UnsynchronizedTextFrame`]
0 commit comments