pub trait ICoreWebView2ClientCertificateRequestedEventArgs_Impl: IUnknownImpl {
// Required methods
fn Host(&self) -> Result<PWSTR>;
fn Port(&self) -> Result<i32>;
fn IsProxy(&self) -> Result<BOOL>;
fn AllowedCertificateAuthorities(
&self,
) -> Result<ICoreWebView2StringCollection>;
fn MutuallyTrustedCertificates(
&self,
) -> Result<ICoreWebView2ClientCertificateCollection>;
fn SelectedCertificate(&self) -> Result<ICoreWebView2ClientCertificate>;
fn SetSelectedCertificate(
&self,
value: Ref<'_, ICoreWebView2ClientCertificate>,
) -> Result<()>;
fn Cancel(&self) -> Result<BOOL>;
fn SetCancel(&self, value: BOOL) -> Result<()>;
fn Handled(&self) -> Result<BOOL>;
fn SetHandled(&self, value: BOOL) -> Result<()>;
fn GetDeferral(&self) -> Result<ICoreWebView2Deferral>;
}Required Methods§
fn Host(&self) -> Result<PWSTR>
fn Port(&self) -> Result<i32>
fn IsProxy(&self) -> Result<BOOL>
fn AllowedCertificateAuthorities(&self) -> Result<ICoreWebView2StringCollection>
fn MutuallyTrustedCertificates( &self, ) -> Result<ICoreWebView2ClientCertificateCollection>
fn SelectedCertificate(&self) -> Result<ICoreWebView2ClientCertificate>
fn SetSelectedCertificate( &self, value: Ref<'_, ICoreWebView2ClientCertificate>, ) -> Result<()>
fn Cancel(&self) -> Result<BOOL>
fn SetCancel(&self, value: BOOL) -> Result<()>
fn Handled(&self) -> Result<BOOL>
fn SetHandled(&self, value: BOOL) -> Result<()>
fn GetDeferral(&self) -> Result<ICoreWebView2Deferral>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".