File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -125,9 +125,9 @@ where
125125 }
126126}
127127
128- impl < ' a , T , const N : usize > EncodeValue for SetOf < T , N >
128+ impl < T , const N : usize > EncodeValue for SetOf < T , N >
129129where
130- T : ' a + Decode < ' a > + Encode + DerOrd ,
130+ T : Encode + DerOrd ,
131131{
132132 fn value_len ( & self ) -> Result < Length , Error > {
133133 self . iter ( )
@@ -143,9 +143,9 @@ where
143143 }
144144}
145145
146- impl < ' a , T , const N : usize > FixedTag for SetOf < T , N >
146+ impl < T , const N : usize > FixedTag for SetOf < T , N >
147147where
148- T : Decode < ' a > + DerOrd ,
148+ T : DerOrd ,
149149{
150150 const TAG : Tag = Tag :: Set ;
151151}
@@ -345,9 +345,9 @@ where
345345}
346346
347347#[ cfg( feature = "alloc" ) ]
348- impl < ' a , T > EncodeValue for SetOfVec < T >
348+ impl < T > EncodeValue for SetOfVec < T >
349349where
350- T : ' a + Decode < ' a > + Encode + DerOrd ,
350+ T : Encode + DerOrd ,
351351{
352352 fn value_len ( & self ) -> Result < Length , Error > {
353353 self . iter ( )
You can’t perform that action at this time.
0 commit comments