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>where
T: DerOrd + Ord,
impl<T, const N: usize> Ord for SetOf<T, N>where
T: DerOrd + Ord,
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>where
T: DerOrd + Eq,
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§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§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> Choice<'a> for T
impl<'a, T> Choice<'a> for T
source§fn can_decode(tag: Tag) -> bool
fn can_decode(tag: Tag) -> bool
Is the provided
Tag
decodable as a variant of this CHOICE
?§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§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 dyn Writer) -> Result<(), Error>
fn encode(&self, writer: &mut dyn 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]>
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.
source§fn encode_to_vec(&self, buf: &mut Vec<u8>) -> Result<Length>
fn encode_to_vec(&self, buf: &mut Vec<u8>) -> Result<Length>
Encode this message as ASN.1 DER, appending it to the provided
byte vector.