pub trait ICoreWebView2NewWindowRequestedEventArgs_Impl: Sized {
    // Required methods
    fn Uri(&self, uri: *mut PWSTR) -> Result<()>;
    fn SetNewWindow(&self, newwindow: Option<&ICoreWebView2>) -> Result<()>;
    fn NewWindow(&self) -> Result<ICoreWebView2>;
    fn SetHandled(&self, handled: BOOL) -> Result<()>;
    fn Handled(&self, handled: *mut BOOL) -> Result<()>;
    fn IsUserInitiated(&self, isuserinitiated: *mut BOOL) -> Result<()>;
    fn GetDeferral(&self) -> Result<ICoreWebView2Deferral>;
    fn WindowFeatures(&self) -> Result<ICoreWebView2WindowFeatures>;
}

Required Methods§

source

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

source

fn SetNewWindow(&self, newwindow: Option<&ICoreWebView2>) -> Result<()>

source

fn NewWindow(&self) -> Result<ICoreWebView2>

source

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

source

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

source

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

source

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

source

fn WindowFeatures(&self) -> Result<ICoreWebView2WindowFeatures>

Object Safety§

This trait is not object safe.

Implementors§