pub trait ICoreWebView2NavigationStartingEventArgs_Impl: Sized {
    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

Implementors