pub type mbedtls_x509_sequence = mbedtls_asn1_sequence;
Expand description
Container for a sequence of ASN.1 items
Aliased Type§
struct mbedtls_x509_sequence {
pub buf: mbedtls_asn1_buf,
pub next: *mut mbedtls_asn1_sequence,
}
Fields§
§buf: mbedtls_asn1_buf
< Buffer containing the given ASN.1 item.
next: *mut mbedtls_asn1_sequence
The next entry in the sequence.
The details of memory management for sequences are not documented and may change in future versions. Set this field to \p NULL when initializing a structure, and do not modify it except via Mbed TLS library functions.
Trait Implementations
Source§impl Clone for mbedtls_asn1_sequence
impl Clone for mbedtls_asn1_sequence
Source§fn clone(&self) -> mbedtls_asn1_sequence
fn clone(&self) -> mbedtls_asn1_sequence
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more