Struct webview2_com_sys::Microsoft::Web::WebView2::Win32::ICoreWebView2DownloadStartingEventArgs
source · #[repr(transparent)]pub struct ICoreWebView2DownloadStartingEventArgs(_);
Implementations§
source§impl ICoreWebView2DownloadStartingEventArgs
impl ICoreWebView2DownloadStartingEventArgs
pub unsafe fn DownloadOperation(&self) -> Result<ICoreWebView2DownloadOperation>
pub unsafe fn Cancel(&self, cancel: *mut BOOL) -> Result<()>
pub unsafe fn SetCancel<P0>(&self, cancel: P0) -> Result<()>where P0: IntoParam<BOOL>,
pub unsafe fn ResultFilePath(&self, resultfilepath: *mut PWSTR) -> Result<()>
pub unsafe fn SetResultFilePath<P0>(&self, resultfilepath: P0) -> Result<()>where P0: IntoParam<PCWSTR>,
pub unsafe fn Handled(&self, handled: *mut BOOL) -> Result<()>
pub unsafe fn SetHandled<P0>(&self, handled: P0) -> Result<()>where P0: IntoParam<BOOL>,
pub unsafe fn GetDeferral(&self) -> Result<ICoreWebView2Deferral>
Trait Implementations§
source§impl ComInterface for ICoreWebView2DownloadStartingEventArgs
impl ComInterface for ICoreWebView2DownloadStartingEventArgs
source§impl Interface for ICoreWebView2DownloadStartingEventArgs
impl Interface for ICoreWebView2DownloadStartingEventArgs
type Vtable = ICoreWebView2DownloadStartingEventArgs_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<ICoreWebView2DownloadStartingEventArgs> for ICoreWebView2DownloadStartingEventArgs
impl PartialEq<ICoreWebView2DownloadStartingEventArgs> for ICoreWebView2DownloadStartingEventArgs
impl Eq for ICoreWebView2DownloadStartingEventArgs
Auto Trait Implementations§
impl RefUnwindSafe for ICoreWebView2DownloadStartingEventArgs
impl !Send for ICoreWebView2DownloadStartingEventArgs
impl !Sync for ICoreWebView2DownloadStartingEventArgs
impl Unpin for ICoreWebView2DownloadStartingEventArgs
impl UnwindSafe for ICoreWebView2DownloadStartingEventArgs
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