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