pub trait ICoreWebView2NavigationStartingEventArgs_Impl: IUnknownImpl {
// Required methods
fn Uri(&self, uri: *mut PWSTR) -> Result<()>;
fn IsUserInitiated(&self, isuserinitiated: *mut BOOL) -> Result<()>;
fn IsRedirected(&self, isredirected: *mut BOOL) -> Result<()>;
fn RequestHeaders(&self) -> Result<ICoreWebView2HttpRequestHeaders>;
fn Cancel(&self, cancel: *mut BOOL) -> Result<()>;
fn SetCancel(&self, cancel: BOOL) -> Result<()>;
fn NavigationId(&self, navigationid: *mut u64) -> Result<()>;
}
Required Methods§
fn Uri(&self, uri: *mut PWSTR) -> Result<()>
fn IsUserInitiated(&self, isuserinitiated: *mut BOOL) -> Result<()>
fn IsRedirected(&self, isredirected: *mut BOOL) -> Result<()>
fn RequestHeaders(&self) -> Result<ICoreWebView2HttpRequestHeaders>
fn Cancel(&self, cancel: *mut BOOL) -> Result<()>
fn SetCancel(&self, cancel: BOOL) -> Result<()>
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.