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§
source§impl<T> SetOfVec<T>where
T: DerOrd,
impl<T> SetOfVec<T>where
T: DerOrd,
sourcepub fn from_iter<I>(iter: I) -> Result<SetOfVec<T>, Error>where
I: IntoIterator<Item = T>,
pub fn from_iter<I>(iter: I) -> Result<SetOfVec<T>, Error>where
I: IntoIterator<Item = T>,
Create a new SetOfVec from the given iterator.
Note: this is an inherent method instead of an impl of the
FromIterator trait in order to be fallible.
sourcepub fn add(&mut self, item: T) -> Result<(), Error>
👎Deprecated since 0.7.6: use insert or insert_ordered instead
pub fn add(&mut self, item: T) -> Result<(), Error>
insert or insert_ordered insteadsourcepub fn insert(&mut self, item: T) -> Result<(), Error>
pub fn insert(&mut self, item: T) -> Result<(), Error>
Insert an item into this SetOfVec. Must be unique.
sourcepub fn insert_ordered(&mut self, item: T) -> Result<(), Error>
pub fn insert_ordered(&mut self, item: T) -> Result<(), Error>
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<'a> From<CertificateSet> for SetOfVec<CertificateChoices>
impl<'a> From<CertificateSet> for SetOfVec<CertificateChoices>
source§fn from(value: CertificateSet) -> SetOfVec<CertificateChoices>
fn from(value: CertificateSet) -> SetOfVec<CertificateChoices>
Converts to this type from the input type.
source§impl<'a> From<RecipientInfos> for SetOfVec<RecipientInfo>
impl<'a> From<RecipientInfos> for SetOfVec<RecipientInfo>
source§fn from(value: RecipientInfos) -> SetOfVec<RecipientInfo>
fn from(value: RecipientInfos) -> SetOfVec<RecipientInfo>
Converts to this type from the input type.
source§impl<'a> From<RelativeDistinguishedName> for SetOfVec<AttributeTypeAndValue>
impl<'a> From<RelativeDistinguishedName> for SetOfVec<AttributeTypeAndValue>
source§fn from(value: RelativeDistinguishedName) -> SetOfVec<AttributeTypeAndValue>
fn from(value: RelativeDistinguishedName) -> SetOfVec<AttributeTypeAndValue>
Converts to this type from the input type.
source§impl<'a> From<RevocationInfoChoices> for SetOfVec<RevocationInfoChoice>
impl<'a> From<RevocationInfoChoices> for SetOfVec<RevocationInfoChoice>
source§fn from(value: RevocationInfoChoices) -> SetOfVec<RevocationInfoChoice>
fn from(value: RevocationInfoChoices) -> SetOfVec<RevocationInfoChoice>
Converts to this type from the input type.
source§impl<'a> From<SignerInfos> for SetOfVec<SignerInfo>
impl<'a> From<SignerInfos> for SetOfVec<SignerInfo>
source§fn from(value: SignerInfos) -> SetOfVec<SignerInfo>
fn from(value: SignerInfos) -> SetOfVec<SignerInfo>
Converts to this type from the input type.
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> PartialOrd for SetOfVec<T>where
T: PartialOrd + DerOrd,
impl<T> PartialOrd for SetOfVec<T>where
T: PartialOrd + DerOrd,
impl<T> Eq for SetOfVec<T>
impl<T> StructuralPartialEq for SetOfVec<T>where
T: DerOrd,
Auto Trait Implementations§
impl<T> Freeze for SetOfVec<T>
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
source§impl<T> Encode for Twhere
T: EncodeValue + Tagged,
impl<T> Encode 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, writer: &mut impl Writer) -> Result<(), Error>
fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided Writer.
source§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.