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§
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>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".