pub struct X509CertPrincipal(/* private fields */);Expand description
See _cef_x509_cert_principal_t for more documentation.
Trait Implementations§
Source§impl Clone for X509CertPrincipal
impl Clone for X509CertPrincipal
Source§fn clone(&self) -> X509CertPrincipal
fn clone(&self) -> X509CertPrincipal
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_cert_principal_t> for &X509CertPrincipal
impl ConvertParam<*mut _cef_x509_cert_principal_t> for &X509CertPrincipal
fn into_raw(self) -> *mut _cef_x509_cert_principal_t
Source§impl ConvertParam<*mut _cef_x509_cert_principal_t> for &mut X509CertPrincipal
impl ConvertParam<*mut _cef_x509_cert_principal_t> for &mut X509CertPrincipal
fn into_raw(self) -> *mut _cef_x509_cert_principal_t
Source§impl ConvertReturnValue<X509CertPrincipal> for *mut _cef_x509_cert_principal_t
impl ConvertReturnValue<X509CertPrincipal> for *mut _cef_x509_cert_principal_t
fn wrap_result(self) -> X509CertPrincipal
Source§impl From<X509CertPrincipal> for *mut _cef_x509_cert_principal_t
impl From<X509CertPrincipal> for *mut _cef_x509_cert_principal_t
Source§fn from(value: X509CertPrincipal) -> Self
fn from(value: X509CertPrincipal) -> Self
Converts to this type from the input type.
Source§impl ImplX509CertPrincipal for X509CertPrincipal
impl ImplX509CertPrincipal for X509CertPrincipal
Source§fn display_name(&self) -> CefStringUserfree
fn display_name(&self) -> CefStringUserfree
See
_cef_x509_cert_principal_t::get_display_name for more documentation.Source§fn common_name(&self) -> CefStringUserfree
fn common_name(&self) -> CefStringUserfree
See
_cef_x509_cert_principal_t::get_common_name for more documentation.Source§fn locality_name(&self) -> CefStringUserfree
fn locality_name(&self) -> CefStringUserfree
See
_cef_x509_cert_principal_t::get_locality_name for more documentation.Source§fn state_or_province_name(&self) -> CefStringUserfree
fn state_or_province_name(&self) -> CefStringUserfree
See
_cef_x509_cert_principal_t::get_state_or_province_name for more documentation.Source§fn country_name(&self) -> CefStringUserfree
fn country_name(&self) -> CefStringUserfree
See
_cef_x509_cert_principal_t::get_country_name for more documentation.Source§fn organization_names(&self, names: Option<&mut CefStringList>)
fn organization_names(&self, names: Option<&mut CefStringList>)
See
_cef_x509_cert_principal_t::get_organization_names for more documentation.Source§fn organization_unit_names(&self, names: Option<&mut CefStringList>)
fn organization_unit_names(&self, names: Option<&mut CefStringList>)
See
_cef_x509_cert_principal_t::get_organization_unit_names for more documentation.fn get_raw(&self) -> *mut _cef_x509_cert_principal_t
Source§impl Rc for X509CertPrincipal
impl Rc for X509CertPrincipal
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 X509CertPrincipal
impl RefUnwindSafe for X509CertPrincipal
impl Send for X509CertPrincipal
impl Sync for X509CertPrincipal
impl Unpin for X509CertPrincipal
impl UnwindSafe for X509CertPrincipal
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