webview2_com_sys::Microsoft::Web::WebView2::Win32

Trait ICoreWebView2ClientCertificate_Impl

Source
pub trait ICoreWebView2ClientCertificate_Impl: IUnknownImpl {
    // Required methods
    fn Subject(&self, value: *mut PWSTR) -> Result<()>;
    fn Issuer(&self, value: *mut PWSTR) -> Result<()>;
    fn ValidFrom(&self, value: *mut f64) -> Result<()>;
    fn ValidTo(&self, value: *mut f64) -> Result<()>;
    fn DerEncodedSerialNumber(&self, value: *mut PWSTR) -> Result<()>;
    fn DisplayName(&self, value: *mut PWSTR) -> Result<()>;
    fn ToPemEncoding(&self, pemencodeddata: *mut PWSTR) -> Result<()>;
    fn PemEncodedIssuerCertificateChain(
        &self,
    ) -> Result<ICoreWebView2StringCollection>;
    fn Kind(
        &self,
        value: *mut COREWEBVIEW2_CLIENT_CERTIFICATE_KIND,
    ) -> Result<()>;
}

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§