pub type cef_sslinfo_t = _cef_sslinfo_t;Expand description
Structure representing SSL information.
NOTE: This struct is allocated DLL-side.
Aliased Type§
#[repr(C)]pub struct cef_sslinfo_t {
pub base: _cef_base_ref_counted_t,
pub get_cert_status: Option<unsafe extern "C" fn(*mut _cef_sslinfo_t) -> cef_cert_status_t>,
pub get_x509_certificate: Option<unsafe extern "C" fn(*mut _cef_sslinfo_t) -> *mut _cef_x509_certificate_t>,
}Fields§
§base: _cef_base_ref_counted_tBase structure.
get_cert_status: Option<unsafe extern "C" fn(*mut _cef_sslinfo_t) -> cef_cert_status_t>Returns a bitmask containing any and all problems verifying the server certificate.
get_x509_certificate: Option<unsafe extern "C" fn(*mut _cef_sslinfo_t) -> *mut _cef_x509_certificate_t>Returns the X.509 certificate.