ICoreWebView2DOMContentLoadedEventArgs

Trait ICoreWebView2DOMContentLoadedEventArgs 

Source
pub trait ICoreWebView2DOMContentLoadedEventArgs: IUnknown {
    // Required method
    unsafe fn get_navigation_id(&self, navigation_id: *mut u64) -> HRESULT;
}
Expand description

Event args for the DOMContentLoaded event.

Required Methods§

Source

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

The ID of the navigation which corresponds to other navigation ID properties on other navigation events.

Trait Implementations§

Source§

impl ComInterface for dyn ICoreWebView2DOMContentLoadedEventArgs

Source§

const IID: IID = IID_ICORE_WEB_VIEW2_DOMCONTENT_LOADED_EVENT_ARGS

The associated id for this interface
Source§

type VTable = ICoreWebView2DOMContentLoadedEventArgsVTable

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: ICoreWebView2DOMContentLoadedEventArgs> ProductionComInterface<C> for dyn ICoreWebView2DOMContentLoadedEventArgs

Source§

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

Get the vtable for a particular COM interface

Implementations on Foreign Types§

Source§

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

Source§

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

Source§

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

Source§

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

Implementors§