pub struct SetOfVec<T>{ /* 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> DecodeValue<'a> for SetOfVec<T>
impl<'a, T> DecodeValue<'a> for SetOfVec<T>
source§impl<'a, T> EncodeValue for SetOfVec<T>
impl<'a, T> EncodeValue for SetOfVec<T>
source§impl<T> Ord for SetOfVec<T>
impl<T> Ord for SetOfVec<T>
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 for SetOfVec<T>
impl<T> PartialEq for SetOfVec<T>
source§impl<T> PartialOrd for SetOfVec<T>
impl<T> PartialOrd for SetOfVec<T>
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>
impl<T> StructuralEq for SetOfVec<T>
impl<T> StructuralPartialEq for SetOfVec<T>
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<'a, T> Decodable<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
impl<'a, T> Decodable<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
source§impl<T> Encodable for Twhere
T: EncodeValue + Tagged,
impl<T> Encodable for Twhere
T: EncodeValue + Tagged,
source§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.
source§fn encode(&self, encoder: &mut Encoder<'_>) -> Result<(), Error>
fn encode(&self, encoder: &mut Encoder<'_>) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided Encoder
.
source§fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8]>
fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8]>
Encode this value to the provided byte slice, returning a sub-slice
containing the encoded message.