Struct esp_idf_sys::mbedtls_asn1_named_data
source · [−]#[repr(C)]pub struct mbedtls_asn1_named_data {
pub oid: mbedtls_asn1_buf,
pub val: mbedtls_asn1_buf,
pub next: *mut mbedtls_asn1_named_data,
pub next_merged: c_uchar,
}
Expand description
Container for a sequence or list of ‘named’ ASN.1 data items
Fields
oid: mbedtls_asn1_buf
< The object identifier.
val: mbedtls_asn1_buf
< The named value.
next: *mut mbedtls_asn1_named_data
< The next entry in the sequence.
next_merged: c_uchar
< Merge next item into the current one?
Trait Implementations
sourceimpl Clone for mbedtls_asn1_named_data
impl Clone for mbedtls_asn1_named_data
sourcefn clone(&self) -> mbedtls_asn1_named_data
fn clone(&self) -> mbedtls_asn1_named_data
Returns a copy of the value. Read more
1.0.0fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for mbedtls_asn1_named_data
impl Debug for mbedtls_asn1_named_data
sourceimpl Default for mbedtls_asn1_named_data
impl Default for mbedtls_asn1_named_data
impl Copy for mbedtls_asn1_named_data
Auto Trait Implementations
impl RefUnwindSafe for mbedtls_asn1_named_data
impl !Send for mbedtls_asn1_named_data
impl !Sync for mbedtls_asn1_named_data
impl Unpin for mbedtls_asn1_named_data
impl UnwindSafe for mbedtls_asn1_named_data
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<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.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more