pub trait ImplSslstatus:
Clone
+ Sized
+ Rc {
// Required methods
fn is_secure_connection(&self) -> c_int;
fn cert_status(&self) -> CertStatus;
fn sslversion(&self) -> SslVersion;
fn content_status(&self) -> SslContentStatus;
fn x509_certificate(&self) -> Option<X509Certificate>;
fn get_raw(&self) -> *mut _cef_sslstatus_t;
}Required Methods§
Sourcefn is_secure_connection(&self) -> c_int
fn is_secure_connection(&self) -> c_int
See _cef_sslstatus_t::is_secure_connection for more documentation.
Sourcefn cert_status(&self) -> CertStatus
fn cert_status(&self) -> CertStatus
See _cef_sslstatus_t::get_cert_status for more documentation.
Sourcefn sslversion(&self) -> SslVersion
fn sslversion(&self) -> SslVersion
See _cef_sslstatus_t::get_sslversion for more documentation.
Sourcefn content_status(&self) -> SslContentStatus
fn content_status(&self) -> SslContentStatus
See _cef_sslstatus_t::get_content_status for more documentation.
Sourcefn x509_certificate(&self) -> Option<X509Certificate>
fn x509_certificate(&self) -> Option<X509Certificate>
See _cef_sslstatus_t::get_x509_certificate for more documentation.
fn get_raw(&self) -> *mut _cef_sslstatus_t
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.