#[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

source§

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)

Performs copy-assignment from source. Read more
source§

impl Debug for mbedtls_x509_crl_entry

source§

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

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

impl Default for mbedtls_x509_crl_entry

source§

fn default() -> Self

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

impl Copy for mbedtls_x509_crl_entry

Auto Trait Implementations§

§

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 T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.