pub struct SetOfVec<T>where
T: DerOrd,{ /* private fields */ }
Available on crate features
pkcs8
and alloc
only.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§
§impl<'a, T> DecodeValue<'a> for SetOfVec<T>where
T: Decode<'a> + DerOrd,
impl<'a, T> DecodeValue<'a> for SetOfVec<T>where
T: Decode<'a> + DerOrd,
§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,
§impl<T> Ord for SetOfVec<T>where
T: Ord + DerOrd,
impl<T> Ord for SetOfVec<T>where
T: Ord + DerOrd,
§impl<T> PartialEq<SetOfVec<T>> for SetOfVec<T>where
T: PartialEq<T> + DerOrd,
impl<T> PartialEq<SetOfVec<T>> for SetOfVec<T>where
T: PartialEq<T> + DerOrd,
§impl<T> PartialOrd<SetOfVec<T>> for SetOfVec<T>where
T: PartialOrd<T> + DerOrd,
impl<T> PartialOrd<SetOfVec<T>> for SetOfVec<T>where
T: PartialOrd<T> + DerOrd,
§fn partial_cmp(&self, other: &SetOfVec<T>) -> Option<Ordering>
fn partial_cmp(&self, other: &SetOfVec<T>) -> Option<Ordering>
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 moreimpl<T> Eq for SetOfVec<T>where
T: Eq + DerOrd,
impl<T> StructuralEq for SetOfVec<T>where
T: DerOrd,
impl<T> StructuralPartialEq for SetOfVec<T>where
T: DerOrd,
Auto Trait Implementations§
impl<T> RefUnwindSafe for SetOfVec<T>where
T: RefUnwindSafe,
impl<T> Send for SetOfVec<T>where
T: Send,
impl<T> Sync for SetOfVec<T>where
T: Sync,
impl<T> Unpin for SetOfVec<T>where
T: Unpin,
impl<T> UnwindSafe for SetOfVec<T>where
T: UnwindSafe,
Blanket Implementations§
§impl<'a, T> Choice<'a> for Twhere
T: Decode<'a> + FixedTag,
impl<'a, T> Choice<'a> for Twhere
T: Decode<'a> + FixedTag,
§fn can_decode(tag: Tag) -> bool
fn can_decode(tag: Tag) -> bool
Is the provided
Tag
decodable as a variant of this CHOICE
?§impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
§impl<T> DerOrd for Twhere
T: EncodeValue + ValueOrd + Tagged,
impl<T> DerOrd for Twhere
T: EncodeValue + ValueOrd + Tagged,
§impl<T> Encode for Twhere
T: EncodeValue + Tagged,
impl<T> Encode for Twhere
T: EncodeValue + Tagged,
§fn encoded_len(&self) -> Result<Length, Error>
fn encoded_len(&self) -> Result<Length, Error>
Compute the length of this value in bytes when encoded as ASN.1 DER.
§fn encode(&self, writer: &mut dyn Writer) -> Result<(), Error>
fn encode(&self, writer: &mut dyn Writer) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided Writer
.
§fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
Encode this value to the provided byte slice, returning a sub-slice
containing the encoded message.