pub struct ICoreWebView2ClientCertificateRequestedEventArgs(/* private fields */);
Implementations§
Source§impl ICoreWebView2ClientCertificateRequestedEventArgs
impl ICoreWebView2ClientCertificateRequestedEventArgs
pub unsafe fn get_Host(&self, value: *mut PWSTR) -> Result<()>
pub unsafe fn get_Port(&self, value: *mut i32) -> Result<()>
pub unsafe fn get_IsProxy(&self, value: *mut BOOL) -> Result<()>
pub unsafe fn get_AllowedCertificateAuthorities( &self, ) -> Result<ICoreWebView2StringCollection>
pub unsafe fn get_MutuallyTrustedCertificates( &self, ) -> Result<ICoreWebView2ClientCertificateCollection>
pub unsafe fn get_SelectedCertificate( &self, ) -> Result<ICoreWebView2ClientCertificate>
pub unsafe fn put_SelectedCertificate<'a>( &self, value: impl IntoParam<'a, ICoreWebView2ClientCertificate>, ) -> Result<()>
pub unsafe fn get_Cancel(&self, value: *mut BOOL) -> Result<()>
pub unsafe fn put_Cancel<'a>( &self, value: impl IntoParam<'a, BOOL>, ) -> Result<()>
pub unsafe fn get_Handled(&self, value: *mut BOOL) -> Result<()>
pub unsafe fn put_Handled<'a>( &self, value: impl IntoParam<'a, BOOL>, ) -> Result<()>
pub unsafe fn GetDeferral(&self) -> Result<ICoreWebView2Deferral>
Trait Implementations§
Source§impl Clone for ICoreWebView2ClientCertificateRequestedEventArgs
impl Clone for ICoreWebView2ClientCertificateRequestedEventArgs
Source§fn clone(&self) -> ICoreWebView2ClientCertificateRequestedEventArgs
fn clone(&self) -> ICoreWebView2ClientCertificateRequestedEventArgs
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl From<&ICoreWebView2ClientCertificateRequestedEventArgs> for IUnknown
impl From<&ICoreWebView2ClientCertificateRequestedEventArgs> for IUnknown
Source§fn from(value: &ICoreWebView2ClientCertificateRequestedEventArgs) -> Self
fn from(value: &ICoreWebView2ClientCertificateRequestedEventArgs) -> Self
Converts to this type from the input type.
Source§impl From<ICoreWebView2ClientCertificateRequestedEventArgs> for IUnknown
impl From<ICoreWebView2ClientCertificateRequestedEventArgs> for IUnknown
Source§fn from(value: ICoreWebView2ClientCertificateRequestedEventArgs) -> Self
fn from(value: ICoreWebView2ClientCertificateRequestedEventArgs) -> Self
Converts to this type from the input type.
Source§impl Interface for ICoreWebView2ClientCertificateRequestedEventArgs
impl Interface for ICoreWebView2ClientCertificateRequestedEventArgs
Source§impl PartialEq for ICoreWebView2ClientCertificateRequestedEventArgs
impl PartialEq for ICoreWebView2ClientCertificateRequestedEventArgs
Source§fn eq(&self, other: &ICoreWebView2ClientCertificateRequestedEventArgs) -> bool
fn eq(&self, other: &ICoreWebView2ClientCertificateRequestedEventArgs) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for ICoreWebView2ClientCertificateRequestedEventArgs
impl StructuralPartialEq for ICoreWebView2ClientCertificateRequestedEventArgs
Auto Trait Implementations§
impl Freeze for ICoreWebView2ClientCertificateRequestedEventArgs
impl RefUnwindSafe for ICoreWebView2ClientCertificateRequestedEventArgs
impl !Send for ICoreWebView2ClientCertificateRequestedEventArgs
impl !Sync for ICoreWebView2ClientCertificateRequestedEventArgs
impl Unpin for ICoreWebView2ClientCertificateRequestedEventArgs
impl UnwindSafe for ICoreWebView2ClientCertificateRequestedEventArgs
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more