Skip to main content

ICoreWebView2DownloadStartingEventArgs_Impl

Trait ICoreWebView2DownloadStartingEventArgs_Impl 

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

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§