esp_idf_sys

Type Alias mbedtls_x509_sequence

Source
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

Source§

fn clone(&self) -> mbedtls_asn1_sequence

Returns a copy of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for mbedtls_asn1_sequence

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for mbedtls_asn1_sequence

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Copy for mbedtls_asn1_sequence