Struct wolfssl_sys::WOLFSSL_X509_STORE_CTX

source ·
#[repr(C)]
pub struct WOLFSSL_X509_STORE_CTX { pub store: *mut WOLFSSL_X509_STORE, pub current_cert: *mut WOLFSSL_X509, pub sesChain: *mut WOLFSSL_X509_CHAIN, pub chain: *mut WOLFSSL_STACK, pub domain: *mut c_char, pub userCtx: *mut c_void, pub error: c_int, pub error_depth: c_int, pub discardSessionCerts: c_int, pub totalCerts: c_int, pub certs: *mut WOLFSSL_BUFFER_INFO, pub verify_cb: WOLFSSL_X509_STORE_CTX_verify_cb, }

Fields§

§store: *mut WOLFSSL_X509_STORE§current_cert: *mut WOLFSSL_X509§sesChain: *mut WOLFSSL_X509_CHAIN§chain: *mut WOLFSSL_STACK§domain: *mut c_char§userCtx: *mut c_void§error: c_int§error_depth: c_int§discardSessionCerts: c_int§totalCerts: c_int§certs: *mut WOLFSSL_BUFFER_INFO§verify_cb: WOLFSSL_X509_STORE_CTX_verify_cb

Trait Implementations§

source§

impl Clone for WOLFSSL_X509_STORE_CTX

source§

fn clone(&self) -> WOLFSSL_X509_STORE_CTX

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for WOLFSSL_X509_STORE_CTX

source§

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

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

impl Copy for WOLFSSL_X509_STORE_CTX

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

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

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> CloneToUninit for T
where T: Copy,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

source§

fn into(self) -> U

Calls U::from(self).

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

source§

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

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

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

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

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

§

type Error = Infallible

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

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

Performs the conversion.
source§

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.
source§

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

Performs the conversion.