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