esp_idf_sys

Type Alias mbedtls_x509_bitstring

Source
pub type mbedtls_x509_bitstring = mbedtls_asn1_bitstring;
Expand description

Container for ASN1 bit strings.

Aliased Type§

struct mbedtls_x509_bitstring {
    pub len: usize,
    pub unused_bits: u8,
    pub p: *mut u8,
}

Fields§

§len: usize

< ASN1 length, in octets.

§unused_bits: u8

< Number of unused bits at the end of the string

§p: *mut u8

< Raw ASN1 data for the bit string

Trait Implementations

Source§

impl Clone for mbedtls_asn1_bitstring

Source§

fn clone(&self) -> mbedtls_asn1_bitstring

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_bitstring

Source§

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

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

impl Default for mbedtls_asn1_bitstring

Source§

fn default() -> Self

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

impl Copy for mbedtls_asn1_bitstring