ImplX509CertPrincipal

Trait ImplX509CertPrincipal 

Source
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§

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.

Implementors§