pub trait ICoreWebView2NewWindowRequestedEventArgs_Impl: IUnknownImpl {
// Required methods
fn Uri(&self, uri: *mut PWSTR) -> Result<()>;
fn SetNewWindow(&self, newwindow: Ref<'_, 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§
fn Uri(&self, uri: *mut PWSTR) -> Result<()>
fn SetNewWindow(&self, newwindow: Ref<'_, 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>
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.