Trait ICoreWebView2DownloadStartingEventArgs_Impl

Source
pub trait ICoreWebView2DownloadStartingEventArgs_Impl: IUnknownImpl {
    // Required methods
    fn DownloadOperation(&self) -> Result<ICoreWebView2DownloadOperation>;
    fn Cancel(&self, cancel: *mut BOOL) -> Result<()>;
    fn SetCancel(&self, cancel: BOOL) -> Result<()>;
    fn ResultFilePath(&self, resultfilepath: *mut PWSTR) -> Result<()>;
    fn SetResultFilePath(&self, resultfilepath: &PCWSTR) -> Result<()>;
    fn Handled(&self, handled: *mut BOOL) -> Result<()>;
    fn SetHandled(&self, handled: BOOL) -> Result<()>;
    fn GetDeferral(&self) -> Result<ICoreWebView2Deferral>;
}

Required Methods§

Source

fn DownloadOperation(&self) -> Result<ICoreWebView2DownloadOperation>

Source

fn Cancel(&self, cancel: *mut BOOL) -> Result<()>

Source

fn SetCancel(&self, cancel: BOOL) -> Result<()>

Source

fn ResultFilePath(&self, resultfilepath: *mut PWSTR) -> Result<()>

Source

fn SetResultFilePath(&self, resultfilepath: &PCWSTR) -> Result<()>

Source

fn Handled(&self, handled: *mut BOOL) -> Result<()>

Source

fn SetHandled(&self, handled: BOOL) -> Result<()>

Source

fn GetDeferral(&self) -> Result<ICoreWebView2Deferral>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§