pub struct SetOf<T, const N: usize>where
T: DerOrd,{ /* private fields */ }
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§
Trait Implementations§
Source§impl<'a, T, const N: usize> DecodeValue<'a> for SetOf<T, N>
impl<'a, T, const N: usize> DecodeValue<'a> for SetOf<T, N>
Source§impl<'a, T, const N: usize> EncodeValue for SetOf<T, N>
impl<'a, T, const N: usize> EncodeValue for SetOf<T, N>
Source§impl<T, const N: usize> Ord for SetOf<T, N>
impl<T, const N: usize> Ord for SetOf<T, N>
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> PartialOrd for SetOf<T, N>where
T: DerOrd + PartialOrd,
impl<T, const N: usize> PartialOrd for SetOf<T, N>where
T: DerOrd + PartialOrd,
impl<T, const N: usize> Eq for SetOf<T, N>
impl<T, const N: usize> StructuralPartialEq for SetOf<T, N>where
T: DerOrd,
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