Skip to main content

ICoreWebView2Certificate_Impl

Trait ICoreWebView2Certificate_Impl 

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

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§