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
125
125
}
126
126
}
127
127
128
- impl < ' a , T , const N : usize > EncodeValue for SetOf < T , N >
128
+ impl < T , const N : usize > EncodeValue for SetOf < T , N >
129
129
where
130
- T : ' a + Decode < ' a > + Encode + DerOrd ,
130
+ T : Encode + DerOrd ,
131
131
{
132
132
fn value_len ( & self ) -> Result < Length , Error > {
133
133
self . iter ( )
@@ -143,9 +143,9 @@ where
143
143
}
144
144
}
145
145
146
- impl < ' a , T , const N : usize > FixedTag for SetOf < T , N >
146
+ impl < T , const N : usize > FixedTag for SetOf < T , N >
147
147
where
148
- T : Decode < ' a > + DerOrd ,
148
+ T : DerOrd ,
149
149
{
150
150
const TAG : Tag = Tag :: Set ;
151
151
}
@@ -345,9 +345,9 @@ where
345
345
}
346
346
347
347
#[ cfg( feature = "alloc" ) ]
348
- impl < ' a , T > EncodeValue for SetOfVec < T >
348
+ impl < T > EncodeValue for SetOfVec < T >
349
349
where
350
- T : ' a + Decode < ' a > + Encode + DerOrd ,
350
+ T : Encode + DerOrd ,
351
351
{
352
352
fn value_len ( & self ) -> Result < Length , Error > {
353
353
self . iter ( )
You can’t perform that action at this time.
0 commit comments