pub struct Sequence<'a> { /* private fields */ }
Expand description
ASN.1 SEQUENCE
type.
Implementations
sourceimpl<'a> Sequence<'a>
impl<'a> Sequence<'a>
sourcepub fn as_bytes(&self) -> &'a [u8]ⓘNotable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
pub fn as_bytes(&self) -> &'a [u8]ⓘNotable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
Borrow the inner byte sequence.
sourcepub fn decode_nested<F, T>(&self, f: F) -> Result<T> where
F: FnOnce(&mut Decoder<'a>) -> Result<T>,
pub fn decode_nested<F, T>(&self, f: F) -> Result<T> where
F: FnOnce(&mut Decoder<'a>) -> Result<T>,
sourcepub fn iter<T: Decodable<'a>>(&self) -> SequenceIter<'a, T>ⓘNotable traits for SequenceIter<'a, T>impl<'a, T> Iterator for SequenceIter<'a, T> where
T: Decodable<'a>, type Item = Result<T>;
pub fn iter<T: Decodable<'a>>(&self) -> SequenceIter<'a, T>ⓘNotable traits for SequenceIter<'a, T>impl<'a, T> Iterator for SequenceIter<'a, T> where
T: Decodable<'a>, type Item = Result<T>;
T: Decodable<'a>, type Item = Result<T>;
Iterate over the values in a heterogenously typed sequence.
Trait Implementations
sourceimpl<'a> Encodable for Sequence<'a>
impl<'a> Encodable for Sequence<'a>
sourcefn encoded_len(&self) -> Result<Length>
fn encoded_len(&self) -> Result<Length>
Compute the length of this value in bytes when encoded as ASN.1 DER.
sourcefn encode(&self, encoder: &mut Encoder<'_>) -> Result<()>
fn encode(&self, encoder: &mut Encoder<'_>) -> Result<()>
Encode this value as ASN.1 DER using the provided Encoder
.
sourcefn 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. Read more
sourceimpl<'a> Ord for Sequence<'a>
impl<'a> Ord for Sequence<'a>
sourceimpl<'a> PartialOrd<Sequence<'a>> for Sequence<'a>
impl<'a> PartialOrd<Sequence<'a>> for Sequence<'a>
sourcefn partial_cmp(&self, other: &Sequence<'a>) -> Option<Ordering>
fn partial_cmp(&self, other: &Sequence<'a>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl<'a> Copy for Sequence<'a>
impl<'a> Eq for Sequence<'a>
impl<'a> StructuralEq for Sequence<'a>
impl<'a> StructuralPartialEq for Sequence<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for Sequence<'a>
impl<'a> Send for Sequence<'a>
impl<'a> Sync for Sequence<'a>
impl<'a> Unpin for Sequence<'a>
impl<'a> UnwindSafe for Sequence<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more