Struct der::asn1::SequenceOf
source · pub struct SequenceOf<T, const N: usize> { /* private fields */ }
Expand description
ASN.1 SEQUENCE OF
backed by an array.
This type implements an append-only SEQUENCE OF
type which is stack-based
and does not depend on alloc
support.
Implementations§
source§impl<T, const N: usize> SequenceOf<T, N>
impl<T, const N: usize> SequenceOf<T, N>
sourcepub fn new() -> Self
pub fn new() -> Self
Create a new SequenceOf
.
sourcepub fn add(&mut self, element: T) -> Result<()>
pub fn add(&mut self, element: T) -> Result<()>
Add an element to this SequenceOf
.
sourcepub fn iter(&self) -> SequenceOfIter<'_, T> ⓘ
pub fn iter(&self) -> SequenceOfIter<'_, T> ⓘ
Iterate over the elements in this SequenceOf
.
sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Is this SequenceOf
empty?
sourcepub fn len(&self) -> usize
pub fn len(&self) -> usize
Number of elements in this SequenceOf
.
Trait Implementations§
source§impl<T: Clone, const N: usize> Clone for SequenceOf<T, N>
impl<T: Clone, const N: usize> Clone for SequenceOf<T, N>
source§fn clone(&self) -> SequenceOf<T, N>
fn clone(&self) -> SequenceOf<T, N>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more