pub trait ImplX509CertPrincipal:
Clone
+ Sized
+ Rc {
// Required methods
fn display_name(&self) -> CefStringUserfree;
fn common_name(&self) -> CefStringUserfree;
fn locality_name(&self) -> CefStringUserfree;
fn state_or_province_name(&self) -> CefStringUserfree;
fn country_name(&self) -> CefStringUserfree;
fn organization_names(&self, names: Option<&mut CefStringList>);
fn organization_unit_names(&self, names: Option<&mut CefStringList>);
fn get_raw(&self) -> *mut _cef_x509_cert_principal_t;
}Required Methods§
Sourcefn display_name(&self) -> CefStringUserfree
fn display_name(&self) -> CefStringUserfree
See _cef_x509_cert_principal_t::get_display_name for more documentation.
Sourcefn common_name(&self) -> CefStringUserfree
fn common_name(&self) -> CefStringUserfree
See _cef_x509_cert_principal_t::get_common_name for more documentation.
Sourcefn locality_name(&self) -> CefStringUserfree
fn locality_name(&self) -> CefStringUserfree
See _cef_x509_cert_principal_t::get_locality_name for more documentation.
Sourcefn 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.
Sourcefn country_name(&self) -> CefStringUserfree
fn country_name(&self) -> CefStringUserfree
See _cef_x509_cert_principal_t::get_country_name for more documentation.
Sourcefn 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.
Sourcefn 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
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.