pub struct X509Certificate(/* private fields */);Expand description
See _cef_x509_certificate_t for more documentation.
Trait Implementations§
Source§impl Clone for X509Certificate
impl Clone for X509Certificate
Source§fn clone(&self) -> X509Certificate
fn clone(&self) -> X509Certificate
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ConvertParam<*mut _cef_x509_certificate_t> for &X509Certificate
impl ConvertParam<*mut _cef_x509_certificate_t> for &X509Certificate
fn into_raw(self) -> *mut _cef_x509_certificate_t
Source§impl ConvertParam<*mut _cef_x509_certificate_t> for &mut X509Certificate
impl ConvertParam<*mut _cef_x509_certificate_t> for &mut X509Certificate
fn into_raw(self) -> *mut _cef_x509_certificate_t
Source§impl ConvertReturnValue<X509Certificate> for *mut _cef_x509_certificate_t
impl ConvertReturnValue<X509Certificate> for *mut _cef_x509_certificate_t
fn wrap_result(self) -> X509Certificate
Source§impl From<X509Certificate> for *mut _cef_x509_certificate_t
impl From<X509Certificate> for *mut _cef_x509_certificate_t
Source§fn from(value: X509Certificate) -> Self
fn from(value: X509Certificate) -> Self
Converts to this type from the input type.
Source§impl ImplX509Certificate for X509Certificate
impl ImplX509Certificate for X509Certificate
Source§fn subject(&self) -> Option<X509CertPrincipal>
fn subject(&self) -> Option<X509CertPrincipal>
See
_cef_x509_certificate_t::get_subject for more documentation.Source§fn issuer(&self) -> Option<X509CertPrincipal>
fn issuer(&self) -> Option<X509CertPrincipal>
See
_cef_x509_certificate_t::get_issuer for more documentation.Source§fn serial_number(&self) -> Option<BinaryValue>
fn serial_number(&self) -> Option<BinaryValue>
See
_cef_x509_certificate_t::get_serial_number for more documentation.Source§fn valid_start(&self) -> Basetime
fn valid_start(&self) -> Basetime
See
_cef_x509_certificate_t::get_valid_start for more documentation.Source§fn valid_expiry(&self) -> Basetime
fn valid_expiry(&self) -> Basetime
See
_cef_x509_certificate_t::get_valid_expiry for more documentation.Source§fn derencoded(&self) -> Option<BinaryValue>
fn derencoded(&self) -> Option<BinaryValue>
See
_cef_x509_certificate_t::get_derencoded for more documentation.Source§fn pemencoded(&self) -> Option<BinaryValue>
fn pemencoded(&self) -> Option<BinaryValue>
See
_cef_x509_certificate_t::get_pemencoded for more documentation.Source§fn issuer_chain_size(&self) -> usize
fn issuer_chain_size(&self) -> usize
See
_cef_x509_certificate_t::get_issuer_chain_size for more documentation.Source§fn derencoded_issuer_chain(&self, chain: Option<&mut Vec<Option<BinaryValue>>>)
fn derencoded_issuer_chain(&self, chain: Option<&mut Vec<Option<BinaryValue>>>)
See
_cef_x509_certificate_t::get_derencoded_issuer_chain for more documentation.Source§fn pemencoded_issuer_chain(&self, chain: Option<&mut Vec<Option<BinaryValue>>>)
fn pemencoded_issuer_chain(&self, chain: Option<&mut Vec<Option<BinaryValue>>>)
See
_cef_x509_certificate_t::get_pemencoded_issuer_chain for more documentation.fn get_raw(&self) -> *mut _cef_x509_certificate_t
Source§impl Rc for X509Certificate
impl Rc for X509Certificate
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 X509Certificate
impl RefUnwindSafe for X509Certificate
impl Send for X509Certificate
impl Sync for X509Certificate
impl Unpin for X509Certificate
impl UnwindSafe for X509Certificate
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