Struct esp_idf_sys::mbedtls_x509_crl_entry
source · #[repr(C)]pub struct mbedtls_x509_crl_entry {
pub raw: mbedtls_x509_buf,
pub serial: mbedtls_x509_buf,
pub revocation_date: mbedtls_x509_time,
pub entry_ext: mbedtls_x509_buf,
pub next: *mut mbedtls_x509_crl_entry,
}
Expand description
Certificate revocation list entry. Contains the CA-specific serial numbers and revocation dates.
Some fields of this structure are publicly readable. Do not modify them except via Mbed TLS library functions: the effect of modifying those fields or the data that those fields points to is unspecified.
Fields§
§raw: mbedtls_x509_buf
Direct access to the whole entry inside the containing buffer.
serial: mbedtls_x509_buf
The serial number of the revoked certificate.
revocation_date: mbedtls_x509_time
The revocation date of this entry.
entry_ext: mbedtls_x509_buf
Direct access to the list of CRL entry extensions (an ASN.1 constructed sequence).
If there are no extensions, entry_ext.len == 0
and
entry_ext.p == NULL
.
next: *mut mbedtls_x509_crl_entry
Next element in the linked list of entries. \p NULL indicates the end of the list. Do not modify this field directly.
Trait Implementations§
source§impl Clone for mbedtls_x509_crl_entry
impl Clone for mbedtls_x509_crl_entry
source§fn clone(&self) -> mbedtls_x509_crl_entry
fn clone(&self) -> mbedtls_x509_crl_entry
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 moresource§impl Debug for mbedtls_x509_crl_entry
impl Debug for mbedtls_x509_crl_entry
source§impl Default for mbedtls_x509_crl_entry
impl Default for mbedtls_x509_crl_entry
impl Copy for mbedtls_x509_crl_entry
Auto Trait Implementations§
impl Freeze for mbedtls_x509_crl_entry
impl RefUnwindSafe for mbedtls_x509_crl_entry
impl !Send for mbedtls_x509_crl_entry
impl !Sync for mbedtls_x509_crl_entry
impl Unpin for mbedtls_x509_crl_entry
impl UnwindSafe for mbedtls_x509_crl_entry
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)