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

Required Methods§

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§