webview2_com_sys::Microsoft::Web::WebView2::Win32

Trait ICoreWebView2LaunchingExternalUriSchemeEventArgs_Impl

Source
pub trait ICoreWebView2LaunchingExternalUriSchemeEventArgs_Impl: IUnknownImpl {
    // Required methods
    fn Uri(&self, value: *mut PWSTR) -> Result<()>;
    fn InitiatingOrigin(&self, value: *mut PWSTR) -> Result<()>;
    fn IsUserInitiated(&self, value: *mut BOOL) -> Result<()>;
    fn Cancel(&self, value: *mut BOOL) -> Result<()>;
    fn SetCancel(&self, value: BOOL) -> Result<()>;
    fn GetDeferral(&self) -> Result<ICoreWebView2Deferral>;
}

Required Methods§

Source

fn Uri(&self, value: *mut PWSTR) -> Result<()>

Source

fn InitiatingOrigin(&self, value: *mut PWSTR) -> Result<()>

Source

fn IsUserInitiated(&self, value: *mut BOOL) -> Result<()>

Source

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

Source

fn SetCancel(&self, value: 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§