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_STOREcurrent_cert: *mut WOLFSSL_X509sesChain: *mut WOLFSSL_X509_CHAINchain: *mut WOLFSSL_STACKdomain: *mut c_charuserCtx: *mut c_voiderror: c_interror_depth: c_intdiscardSessionCerts: c_inttotalCerts: c_intcerts: *mut WOLFSSL_BUFFER_INFOverify_cb: WOLFSSL_X509_STORE_CTX_verify_cbTrait Implementations
sourceimpl Clone for WOLFSSL_X509_STORE_CTX
impl Clone for WOLFSSL_X509_STORE_CTX
sourcefn clone(&self) -> WOLFSSL_X509_STORE_CTX
fn clone(&self) -> WOLFSSL_X509_STORE_CTX
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for WOLFSSL_X509_STORE_CTX
impl Debug for WOLFSSL_X509_STORE_CTX
impl Copy for WOLFSSL_X509_STORE_CTX
Auto Trait Implementations
impl RefUnwindSafe for WOLFSSL_X509_STORE_CTX
impl !Send for WOLFSSL_X509_STORE_CTX
impl !Sync for WOLFSSL_X509_STORE_CTX
impl Unpin for WOLFSSL_X509_STORE_CTX
impl UnwindSafe for WOLFSSL_X509_STORE_CTX
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more