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
impl Clone for mbedtls_asn1_bitstring
Source§fn clone(&self) -> mbedtls_asn1_bitstring
fn clone(&self) -> mbedtls_asn1_bitstring
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