We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a74aaa commit a1c04f3Copy full SHA for a1c04f3
der/src/asn1/set_of.rs
@@ -127,7 +127,7 @@ where
127
128
impl<'a, T, const N: usize> EncodeValue for SetOf<T, N>
129
where
130
- T: 'a + Decode<'a> + Encode + DerOrd,
+ T: 'a + Encode + DerOrd,
131
{
132
fn value_len(&self) -> Result<Length, Error> {
133
self.iter()
@@ -145,7 +145,7 @@ where
145
146
impl<'a, T, const N: usize> FixedTag for SetOf<T, N>
147
148
- T: Decode<'a> + DerOrd,
+ T: DerOrd,
149
150
const TAG: Tag = Tag::Set;
151
}
@@ -347,7 +347,7 @@ where
347
#[cfg(feature = "alloc")]
348
impl<'a, T> EncodeValue for SetOfVec<T>
349
350
351
352
353
0 commit comments