pub trait ICoreWebView2DownloadStartingEventArgs_Impl: Sized {
    // 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>

Object Safety§

This trait is not object safe.

Implementors§