Struct webview2_com_sys::Microsoft::Web::WebView2::Win32::ICoreWebView2PermissionRequestedEventArgs
source · #[repr(transparent)]pub struct ICoreWebView2PermissionRequestedEventArgs(_);
Implementations§
source§impl ICoreWebView2PermissionRequestedEventArgs
impl ICoreWebView2PermissionRequestedEventArgs
pub unsafe fn Uri(&self, uri: *mut PWSTR) -> Result<()>
pub unsafe fn PermissionKind( &self, permissionkind: *mut COREWEBVIEW2_PERMISSION_KIND ) -> Result<()>
pub unsafe fn IsUserInitiated(&self, isuserinitiated: *mut BOOL) -> Result<()>
pub unsafe fn State( &self, state: *mut COREWEBVIEW2_PERMISSION_STATE ) -> Result<()>
pub unsafe fn SetState( &self, state: COREWEBVIEW2_PERMISSION_STATE ) -> Result<()>
pub unsafe fn GetDeferral(&self) -> Result<ICoreWebView2Deferral>
Trait Implementations§
source§impl ComInterface for ICoreWebView2PermissionRequestedEventArgs
impl ComInterface for ICoreWebView2PermissionRequestedEventArgs
source§impl Interface for ICoreWebView2PermissionRequestedEventArgs
impl Interface for ICoreWebView2PermissionRequestedEventArgs
type Vtable = ICoreWebView2PermissionRequestedEventArgs_Vtbl
source§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface
implementation.source§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
source§impl PartialEq<ICoreWebView2PermissionRequestedEventArgs> for ICoreWebView2PermissionRequestedEventArgs
impl PartialEq<ICoreWebView2PermissionRequestedEventArgs> for ICoreWebView2PermissionRequestedEventArgs
impl Eq for ICoreWebView2PermissionRequestedEventArgs
Auto Trait Implementations§
impl RefUnwindSafe for ICoreWebView2PermissionRequestedEventArgs
impl !Send for ICoreWebView2PermissionRequestedEventArgs
impl !Sync for ICoreWebView2PermissionRequestedEventArgs
impl Unpin for ICoreWebView2PermissionRequestedEventArgs
impl UnwindSafe for ICoreWebView2PermissionRequestedEventArgs
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