pub struct Sslinfo(/* private fields */);Expand description
See _cef_sslinfo_t for more documentation.
Trait Implementations§
Source§impl ConvertParam<*mut _cef_sslinfo_t> for &Sslinfo
impl ConvertParam<*mut _cef_sslinfo_t> for &Sslinfo
fn into_raw(self) -> *mut _cef_sslinfo_t
Source§impl ConvertParam<*mut _cef_sslinfo_t> for &mut Sslinfo
impl ConvertParam<*mut _cef_sslinfo_t> for &mut Sslinfo
fn into_raw(self) -> *mut _cef_sslinfo_t
Source§impl ConvertReturnValue<Sslinfo> for *mut _cef_sslinfo_t
impl ConvertReturnValue<Sslinfo> for *mut _cef_sslinfo_t
fn wrap_result(self) -> Sslinfo
Source§impl ImplSslinfo for Sslinfo
impl ImplSslinfo for Sslinfo
Source§fn cert_status(&self) -> CertStatus
fn cert_status(&self) -> CertStatus
See
_cef_sslinfo_t::get_cert_status for more documentation.Source§fn x509_certificate(&self) -> Option<X509Certificate>
fn x509_certificate(&self) -> Option<X509Certificate>
See
_cef_sslinfo_t::get_x509_certificate for more documentation.fn get_raw(&self) -> *mut _cef_sslinfo_t
Source§impl Rc for Sslinfo
impl Rc for Sslinfo
Source§fn as_base(&self) -> &_cef_base_ref_counted_t
fn as_base(&self) -> &_cef_base_ref_counted_t
Get the reference of cef_base_ref_counted_t.
Source§unsafe fn release(&self) -> bool
unsafe fn release(&self) -> bool
Decrease reference count by 1 and release the value if the count meets 0.
Reuturn
True if it is released. Read moreSource§fn has_one_ref(&self) -> bool
fn has_one_ref(&self) -> bool
True if the reference count is exactly 1.Source§fn has_at_least_one_ref(&self) -> bool
fn has_at_least_one_ref(&self) -> bool
True if the reference count is larger than 0.Auto Trait Implementations§
impl Freeze for Sslinfo
impl RefUnwindSafe for Sslinfo
impl Send for Sslinfo
impl Sync for Sslinfo
impl Unpin for Sslinfo
impl UnwindSafe for Sslinfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more