pub struct ICoreWebView2DownloadStartingEventArgs(/* private fields */);
Implementations§
Source§impl ICoreWebView2DownloadStartingEventArgs
impl ICoreWebView2DownloadStartingEventArgs
pub unsafe fn get_DownloadOperation( &self, ) -> Result<ICoreWebView2DownloadOperation>
pub unsafe fn get_Cancel(&self, cancel: *mut BOOL) -> Result<()>
pub unsafe fn put_Cancel<'a>( &self, cancel: impl IntoParam<'a, BOOL>, ) -> Result<()>
pub unsafe fn get_ResultFilePath( &self, resultfilepath: *mut PWSTR, ) -> Result<()>
pub unsafe fn put_ResultFilePath<'a>( &self, resultfilepath: impl IntoParam<'a, PWSTR>, ) -> Result<()>
pub unsafe fn get_Handled(&self, handled: *mut BOOL) -> Result<()>
pub unsafe fn put_Handled<'a>( &self, handled: impl IntoParam<'a, BOOL>, ) -> Result<()>
pub unsafe fn GetDeferral(&self) -> Result<ICoreWebView2Deferral>
Trait Implementations§
Source§impl Clone for ICoreWebView2DownloadStartingEventArgs
impl Clone for ICoreWebView2DownloadStartingEventArgs
Source§fn clone(&self) -> ICoreWebView2DownloadStartingEventArgs
fn clone(&self) -> ICoreWebView2DownloadStartingEventArgs
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<&ICoreWebView2DownloadStartingEventArgs> for IUnknown
impl From<&ICoreWebView2DownloadStartingEventArgs> for IUnknown
Source§fn from(value: &ICoreWebView2DownloadStartingEventArgs) -> Self
fn from(value: &ICoreWebView2DownloadStartingEventArgs) -> Self
Converts to this type from the input type.
Source§impl From<ICoreWebView2DownloadStartingEventArgs> for IUnknown
impl From<ICoreWebView2DownloadStartingEventArgs> for IUnknown
Source§fn from(value: ICoreWebView2DownloadStartingEventArgs) -> Self
fn from(value: ICoreWebView2DownloadStartingEventArgs) -> Self
Converts to this type from the input type.
Source§impl Interface for ICoreWebView2DownloadStartingEventArgs
impl Interface for ICoreWebView2DownloadStartingEventArgs
Source§impl PartialEq for ICoreWebView2DownloadStartingEventArgs
impl PartialEq for ICoreWebView2DownloadStartingEventArgs
Source§fn eq(&self, other: &ICoreWebView2DownloadStartingEventArgs) -> bool
fn eq(&self, other: &ICoreWebView2DownloadStartingEventArgs) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for ICoreWebView2DownloadStartingEventArgs
impl StructuralPartialEq for ICoreWebView2DownloadStartingEventArgs
Auto Trait Implementations§
impl Freeze for ICoreWebView2DownloadStartingEventArgs
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