ICoreWebView2ContentLoadingEventArgs

Trait ICoreWebView2ContentLoadingEventArgs 

Source
pub trait ICoreWebView2ContentLoadingEventArgs: IUnknown {
    // Required methods
    unsafe fn get_is_error_page(&self, is_error_page: *mut BOOL) -> HRESULT;
    unsafe fn get_navigation_id(&self, navigation_id: *mut u64) -> HRESULT;
}
Expand description

Event args for the ContentLoading event.

Required Methods§

Source

unsafe fn get_is_error_page(&self, is_error_page: *mut BOOL) -> HRESULT

TRUE if the loaded content is an error page.

Source

unsafe fn get_navigation_id(&self, navigation_id: *mut u64) -> HRESULT

The ID of the navigation.

Trait Implementations§

Source§

impl ComInterface for dyn ICoreWebView2ContentLoadingEventArgs

Source§

const IID: IID = IID_ICORE_WEB_VIEW2_CONTENT_LOADING_EVENT_ARGS

The associated id for this interface
Source§

type VTable = ICoreWebView2ContentLoadingEventArgsVTable

A COM compatible V-Table
Source§

type Super = dyn IUnknown

The interface that this interface inherits from
Source§

fn is_iid_in_inheritance_chain(riid: &GUID) -> bool

Check whether a given IID is in the inheritance hierarchy of this interface
Source§

impl<C: ICoreWebView2ContentLoadingEventArgs> ProductionComInterface<C> for dyn ICoreWebView2ContentLoadingEventArgs

Source§

fn vtable<O: Offset>() -> Self::VTable

Get the vtable for a particular COM interface

Implementations on Foreign Types§

Source§

impl<T: ICoreWebView2ContentLoadingEventArgs + ComInterface + ?Sized> ICoreWebView2ContentLoadingEventArgs for ComPtr<T>

Source§

unsafe fn get_is_error_page(&self, is_error_page: *mut BOOL) -> HRESULT

Source§

unsafe fn get_navigation_id(&self, navigation_id: *mut u64) -> HRESULT

Source§

impl<T: ICoreWebView2ContentLoadingEventArgs + ComInterface + ?Sized> ICoreWebView2ContentLoadingEventArgs for ComRc<T>

Source§

unsafe fn get_is_error_page(&self, is_error_page: *mut BOOL) -> HRESULT

Source§

unsafe fn get_navigation_id(&self, navigation_id: *mut u64) -> HRESULT

Implementors§