pub struct SetOf<T, const N: usize>where
T: DerOrd,{ /* private fields */ }Available on crate feature
heapless only.Expand description
ASN.1 SET OF backed by an array.
This type implements an append-only SET OF type which is stack-based
and does not depend on alloc support.
Implementations§
Source§impl<T, const N: usize> SetOf<T, N>where
T: DerOrd,
impl<T, const N: usize> SetOf<T, N>where
T: DerOrd,
Sourcepub fn insert(&mut self, item: T) -> Result<(), Error>
Available on crate features alloc or heapless only.
pub fn insert(&mut self, item: T) -> Result<(), Error>
alloc or heapless only.Sourcepub fn insert_ordered(&mut self, item: T) -> Result<(), Error>
Available on crate features alloc or heapless only.
pub fn insert_ordered(&mut self, item: T) -> Result<(), Error>
alloc or heapless only.Sourcepub fn as_slice(&self) -> &[T]
Available on crate features alloc or heapless only.
pub fn as_slice(&self) -> &[T]
alloc or heapless only.Borrow the elements of this SetOf as a slice.
Sourcepub fn get(&self, index: usize) -> Option<&T>
Available on crate features alloc or heapless only.
pub fn get(&self, index: usize) -> Option<&T>
alloc or heapless only.Get the nth element from this SetOf.
Sourcepub fn into_inner(self) -> Vec<T, N>
Available on crate features alloc or heapless only.
pub fn into_inner(self) -> Vec<T, N>
alloc or heapless only.Extract the inner heapless::Vec.
Sourcepub fn iter(&self) -> SetOfIter<'_, T> ⓘ
Available on crate features alloc or heapless only.
pub fn iter(&self) -> SetOfIter<'_, T> ⓘ
alloc or heapless only.Iterate over the elements of this SetOf.
Trait Implementations§
Source§impl<T, const N: usize> AsRef<[T]> for SetOf<T, N>where
T: DerOrd,
Available on crate features alloc or heapless only.
impl<T, const N: usize> AsRef<[T]> for SetOf<T, N>where
T: DerOrd,
Available on crate features
alloc or heapless only.Source§impl<T, const N: usize> Clone for SetOf<T, N>
Available on crate features alloc or heapless only.
impl<T, const N: usize> Clone for SetOf<T, N>
Available on crate features
alloc or heapless only.Source§impl<T, const N: usize> Debug for SetOf<T, N>
Available on crate features alloc or heapless only.
impl<T, const N: usize> Debug for SetOf<T, N>
Available on crate features
alloc or heapless only.Source§impl<'a, T, const N: usize> DecodeValue<'a> for SetOf<T, N>
Available on crate features alloc or heapless only.
impl<'a, T, const N: usize> DecodeValue<'a> for SetOf<T, N>
Available on crate features
alloc or heapless only.Source§impl<T, const N: usize> Default for SetOf<T, N>where
T: DerOrd,
Available on crate features alloc or heapless only.
impl<T, const N: usize> Default for SetOf<T, N>where
T: DerOrd,
Available on crate features
alloc or heapless only.Source§impl<T, const N: usize> EncodeValue for SetOf<T, N>
Available on crate features alloc or heapless only.
impl<T, const N: usize> EncodeValue for SetOf<T, N>
Available on crate features
alloc or heapless only.Source§impl<T, const N: usize> FixedTag for SetOf<T, N>where
T: DerOrd,
Available on crate features alloc or heapless only.
impl<T, const N: usize> FixedTag for SetOf<T, N>where
T: DerOrd,
Available on crate features
alloc or heapless only.Source§impl<T, const N: usize> Hash for SetOf<T, N>
Available on crate features alloc or heapless only.
impl<T, const N: usize> Hash for SetOf<T, N>
Available on crate features
alloc or heapless only.Source§impl<T, const N: usize> Ord for SetOf<T, N>
Available on crate features alloc or heapless only.
impl<T, const N: usize> Ord for SetOf<T, N>
Available on crate features
alloc or heapless only.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, const N: usize> PartialEq for SetOf<T, N>
Available on crate features alloc or heapless only.
impl<T, const N: usize> PartialEq for SetOf<T, N>
Available on crate features
alloc or heapless only.Source§impl<T, const N: usize> PartialOrd for SetOf<T, N>where
T: DerOrd + PartialOrd,
Available on crate features alloc or heapless only.
impl<T, const N: usize> PartialOrd for SetOf<T, N>where
T: DerOrd + PartialOrd,
Available on crate features
alloc or heapless only.Source§impl<T, const N: usize> TryFrom<[T; N]> for SetOf<T, N>where
T: DerOrd,
Available on crate features alloc or heapless only.
impl<T, const N: usize> TryFrom<[T; N]> for SetOf<T, N>where
T: DerOrd,
Available on crate features
alloc or heapless only.Source§impl<T, const N: usize> ValueOrd for SetOf<T, N>where
T: DerOrd,
Available on crate features alloc or heapless only.
impl<T, const N: usize> ValueOrd for SetOf<T, N>where
T: DerOrd,
Available on crate features
alloc or heapless only.impl<T, const N: usize> Eq for SetOf<T, N>
Available on crate features
alloc or heapless only.impl<T, const N: usize> StructuralPartialEq for SetOf<T, N>where
T: DerOrd,
Available on crate features
alloc or heapless only.Auto Trait Implementations§
impl<T, const N: usize> Freeze for SetOf<T, N>where
T: Freeze,
impl<T, const N: usize> RefUnwindSafe for SetOf<T, N>where
T: RefUnwindSafe,
impl<T, const N: usize> Send for SetOf<T, N>where
T: Send,
impl<T, const N: usize> Sync for SetOf<T, N>where
T: Sync,
impl<T, const N: usize> Unpin for SetOf<T, N>where
T: Unpin,
impl<T, const N: usize> UnwindSafe for SetOf<T, N>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§impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag + 'a,
impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag + 'a,
Source§type Error = <T as DecodeValue<'a>>::Error
type Error = <T as DecodeValue<'a>>::Error
Type returned in the event of a decoding error.
Source§fn decode<R>(reader: &mut R) -> Result<T, <T as DecodeValue<'a>>::Error>where
R: Reader<'a>,
fn decode<R>(reader: &mut R) -> Result<T, <T as DecodeValue<'a>>::Error>where
R: Reader<'a>,
Attempt to decode this TLV message using the provided decoder. Read more
Source§fn from_ber(bytes: &'a [u8]) -> Result<Self, Self::Error>
fn from_ber(bytes: &'a [u8]) -> Result<Self, Self::Error>
Available on crate feature
ber only.Parse
Self from the provided BER-encoded byte slice. Read moreSource§impl<T> Encode for T
impl<T> Encode for T
Source§fn encoded_len(&self) -> Result<Length, Error>
fn encoded_len(&self) -> Result<Length, Error>
Compute the length of this TLV object in bytes when encoded as ASN.1 DER. Read more
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 TLV object to the provided byte slice, returning a sub-slice
containing the encoded message. Read more
Source§impl<T> IsConstructed for T
impl<T> IsConstructed for T
Source§const CONSTRUCTED: bool = const CONSTRUCTED: bool = T::TAG.is_constructed();
const CONSTRUCTED: bool = const CONSTRUCTED: bool = T::TAG.is_constructed();
ASN.1 constructed bit