Skip to main content

ICoreWebView2_2_Impl

Trait ICoreWebView2_2_Impl 

Source
pub trait ICoreWebView2_2_Impl: ICoreWebView2_Impl {
    // Required methods
    fn WebResourceResponseReceived(
        &self,
        eventhandler: Ref<'_, ICoreWebView2WebResourceResponseReceivedEventHandler>,
    ) -> Result<i64>;
    fn RemoveWebResourceResponseReceived(&self, token: i64) -> Result<()>;
    fn NavigateWithWebResourceRequest(
        &self,
        request: Ref<'_, ICoreWebView2WebResourceRequest>,
    ) -> Result<()>;
    fn DOMContentLoaded(
        &self,
        eventhandler: Ref<'_, ICoreWebView2DOMContentLoadedEventHandler>,
    ) -> Result<i64>;
    fn RemoveDOMContentLoaded(&self, token: i64) -> Result<()>;
    fn CookieManager(&self) -> Result<ICoreWebView2CookieManager>;
    fn Environment(&self) -> Result<ICoreWebView2Environment>;
}

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§