pub struct SetOfVec<T>where
T: DerOrd,{ /* private fields */ }
Expand description
ASN.1 SET OF
backed by a Vec
.
This type implements an append-only SET OF
type which is heap-backed
and depends on alloc
support.
Implementations§
Trait Implementations§
source§impl<'a, T> EncodeValue for SetOfVec<T>where
T: 'a + Decode<'a> + Encode + DerOrd,
impl<'a, T> EncodeValue for SetOfVec<T>where
T: 'a + Decode<'a> + Encode + DerOrd,
source§impl<T> Ord for SetOfVec<T>where
T: DerOrd + Ord,
impl<T> Ord for SetOfVec<T>where
T: DerOrd + Ord,
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<T> PartialEq<SetOfVec<T>> for SetOfVec<T>where
T: DerOrd + PartialEq,
impl<T> PartialEq<SetOfVec<T>> for SetOfVec<T>where
T: DerOrd + PartialEq,
source§impl<T> PartialOrd<SetOfVec<T>> for SetOfVec<T>where
T: DerOrd + PartialOrd,
impl<T> PartialOrd<SetOfVec<T>> for SetOfVec<T>where
T: DerOrd + PartialOrd,
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more